Spaces:
Runtime error
Runtime error
Add requirements.txt
Browse files- requirements.txt +49 -0
requirements.txt
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# requirements
|
2 |
+
# Usage: pip install -r requirements.txt
|
3 |
+
|
4 |
+
git+https://github.com/WongKinYiu/yolov9.git@main
|
5 |
+
|
6 |
+
# Base ------------------------------------------------------------------------
|
7 |
+
gitpython
|
8 |
+
ipython
|
9 |
+
matplotlib>=3.2.2
|
10 |
+
numpy>=1.18.5
|
11 |
+
opencv-python>=4.1.1
|
12 |
+
Pillow>=7.1.2, <10.0.0
|
13 |
+
psutil
|
14 |
+
PyYAML>=5.3.1
|
15 |
+
requests>=2.23.0
|
16 |
+
scipy>=1.4.1
|
17 |
+
thop>=0.1.1
|
18 |
+
torch>=1.7.0
|
19 |
+
torchvision>=0.8.1
|
20 |
+
tqdm>=4.64.0
|
21 |
+
# protobuf<=3.20.1
|
22 |
+
|
23 |
+
# Logging ---------------------------------------------------------------------
|
24 |
+
tensorboard>=2.4.1
|
25 |
+
# clearml>=1.2.0
|
26 |
+
# comet
|
27 |
+
|
28 |
+
# Plotting --------------------------------------------------------------------
|
29 |
+
pandas>=1.1.4
|
30 |
+
seaborn>=0.11.0
|
31 |
+
|
32 |
+
# Export ----------------------------------------------------------------------
|
33 |
+
# coremltools>=6.0
|
34 |
+
# onnx>=1.9.0
|
35 |
+
# onnx-simplifier>=0.4.1
|
36 |
+
# nvidia-pyindex
|
37 |
+
# nvidia-tensorrt
|
38 |
+
# scikit-learn<=1.1.2
|
39 |
+
# tensorflow>=2.4.1
|
40 |
+
# tensorflowjs>=3.9.0
|
41 |
+
# openvino-dev
|
42 |
+
|
43 |
+
# Deploy ----------------------------------------------------------------------
|
44 |
+
# tritonclient[all]~=2.24.0
|
45 |
+
|
46 |
+
# Extras ----------------------------------------------------------------------
|
47 |
+
# mss
|
48 |
+
albumentations>=1.0.3
|
49 |
+
pycocotools>=2.0
|