Spaces:
Runtime error
Runtime error
Zengyf-CVer
commited on
Commit
•
2f753bb
1
Parent(s):
0e4f466
v03 update
Browse files- requirements.txt +38 -0
requirements.txt
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Base ----------------------------------------
|
2 |
+
matplotlib>=3.2.2
|
3 |
+
numpy>=1.18.5
|
4 |
+
opencv-python-headless>=4.5.5.64
|
5 |
+
Pillow>=7.1.2
|
6 |
+
PyYAML>=5.3.1
|
7 |
+
requests>=2.23.0
|
8 |
+
scipy>=1.4.1
|
9 |
+
torch>=1.7.0
|
10 |
+
torchvision>=0.8.1
|
11 |
+
tqdm>=4.41.0
|
12 |
+
wget>=3.2
|
13 |
+
rich>=12.2.0
|
14 |
+
fpdf>=1.7.2
|
15 |
+
|
16 |
+
# Logging -------------------------------------
|
17 |
+
tensorboard>=2.4.1
|
18 |
+
# wandb
|
19 |
+
|
20 |
+
# Plotting ------------------------------------
|
21 |
+
pandas>=1.1.4
|
22 |
+
seaborn>=0.11.0
|
23 |
+
|
24 |
+
# Export --------------------------------------
|
25 |
+
# coremltools>=4.1 # CoreML export
|
26 |
+
# onnx>=1.9.0 # ONNX export
|
27 |
+
# onnx-simplifier>=0.3.6 # ONNX simplifier
|
28 |
+
# scikit-learn==0.19.2 # CoreML quantization
|
29 |
+
# tensorflow>=2.4.1 # TFLite export
|
30 |
+
# tensorflowjs>=3.9.0 # TF.js export
|
31 |
+
# openvino-dev # OpenVINO export
|
32 |
+
|
33 |
+
# Extras --------------------------------------
|
34 |
+
# albumentations>=1.0.3
|
35 |
+
# Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
|
36 |
+
# pycocotools>=2.0 # COCO mAP
|
37 |
+
# roboflow
|
38 |
+
thop # FLOPs computation
|