kisa-misa commited on
Commit
f8d44ec
1 Parent(s): ddff15f

Upload requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +46 -0
requirements.txt ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Ultralytics requirements
2
+ # Usage: pip install -r requirements.txt
3
+
4
+ # Base ----------------------------------------
5
+ hydra-core>=1.2.0
6
+ matplotlib>=3.2.2
7
+ numpy>=1.18.5
8
+ opencv-python>=4.1.1
9
+ Pillow>=7.1.2
10
+ PyYAML>=5.3.1
11
+ requests>=2.23.0
12
+ scipy>=1.4.1
13
+ torch>=1.7.0
14
+ torchvision>=0.8.1
15
+ tqdm>=4.64.0
16
+
17
+ # Logging -------------------------------------
18
+ tensorboard>=2.4.1
19
+ # clearml
20
+ # comet
21
+
22
+ # Plotting ------------------------------------
23
+ pandas>=1.1.4
24
+ seaborn>=0.11.0
25
+
26
+ # Export --------------------------------------
27
+ # coremltools>=6.0 # CoreML export
28
+ # onnx>=1.12.0 # ONNX export
29
+ # onnx-simplifier>=0.4.1 # ONNX simplifier
30
+ # nvidia-pyindex # TensorRT export
31
+ # nvidia-tensorrt # TensorRT export
32
+ # scikit-learn==0.19.2 # CoreML quantization
33
+ # tensorflow>=2.4.1 # TF exports (-cpu, -aarch64, -macos)
34
+ # tensorflowjs>=3.9.0 # TF.js export
35
+ # openvino-dev # OpenVINO export
36
+
37
+ # Extras --------------------------------------
38
+ ipython # interactive notebook
39
+ psutil # system utilization
40
+ thop>=0.1.1 # FLOPs computation
41
+ # albumentations>=1.0.3
42
+ # pycocotools>=2.0.6 # COCO mAP
43
+ # roboflow
44
+
45
+ # HUB -----------------------------------------
46
+ GitPython>=3.1.24