Spaces:
Runtime error
Runtime error
Upload requirements.txt
Browse files- requirements.txt +31 -0
requirements.txt
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pip install -r requirements.txt
|
| 2 |
+
|
| 3 |
+
# base ----------------------------------------
|
| 4 |
+
matplotlib>=3.2.2
|
| 5 |
+
numpy>=1.18.5
|
| 6 |
+
opencv-python-headless
|
| 7 |
+
Pillow
|
| 8 |
+
PyYAML>=5.3.1
|
| 9 |
+
scipy>=1.4.1
|
| 10 |
+
torch>=1.7.0
|
| 11 |
+
torchvision>=0.8.1
|
| 12 |
+
tqdm>=4.41.0
|
| 13 |
+
|
| 14 |
+
# logging -------------------------------------
|
| 15 |
+
tensorboard>=2.4.1
|
| 16 |
+
# wandb
|
| 17 |
+
|
| 18 |
+
# plotting ------------------------------------
|
| 19 |
+
seaborn>=0.11.0
|
| 20 |
+
pandas
|
| 21 |
+
|
| 22 |
+
# export --------------------------------------
|
| 23 |
+
# coremltools>=4.1
|
| 24 |
+
# onnx>=1.9.0
|
| 25 |
+
# scikit-learn==0.19.2 # for coreml quantization
|
| 26 |
+
|
| 27 |
+
# extras --------------------------------------
|
| 28 |
+
# Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
|
| 29 |
+
# pycocotools>=2.0 # COCO mAP
|
| 30 |
+
# albumentations>=1.0.3
|
| 31 |
+
thop # FLOPs computation
|