Ahsen Khaliq
commited on
Commit
·
5c70fcb
1
Parent(s):
c4ac95b
Create requirements.txt
Browse files- requirements.txt +36 -0
requirements.txt
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# pip install -r requirements.txt
|
| 2 |
+
|
| 3 |
+
# base ----------------------------------------
|
| 4 |
+
matplotlib>=3.2.2
|
| 5 |
+
numpy>=1.18.5
|
| 6 |
+
opencv-python>=4.1.2
|
| 7 |
+
Pillow>=8.0.0
|
| 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 |
+
gdown>=4.2.0
|
| 14 |
+
|
| 15 |
+
# logging -------------------------------------
|
| 16 |
+
tensorboard>=2.4.1
|
| 17 |
+
# wandb
|
| 18 |
+
|
| 19 |
+
# plotting ------------------------------------
|
| 20 |
+
seaborn>=0.11.0
|
| 21 |
+
pandas
|
| 22 |
+
|
| 23 |
+
# export --------------------------------------
|
| 24 |
+
# coremltools>=4.1
|
| 25 |
+
# onnx>=1.9.0
|
| 26 |
+
# scikit-learn==0.19.2 # for coreml quantization
|
| 27 |
+
# tensorflow==2.4.1 # for TFLite export
|
| 28 |
+
|
| 29 |
+
# extras --------------------------------------
|
| 30 |
+
Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
|
| 31 |
+
pycocotools>=2.0.2 # COCO mAP
|
| 32 |
+
# albumentations>=1.0.3
|
| 33 |
+
thop # FLOPs computation
|
| 34 |
+
|
| 35 |
+
# inference demos
|
| 36 |
+
pytube
|