CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hukaixuan19970627

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: hukaixuan19970627/yolov5_obb
Path: blob/master/requirements.txt
Views: 475
1
# pip install -r requirements.txt
2
3
# Base ----------------------------------------
4
matplotlib>=3.2.2
5
numpy>=1.18.5
6
opencv-python>=4.5.4
7
Pillow>=7.1.2
8
PyYAML>=5.3.1
9
requests>=2.23.0
10
scipy>=1.4.1
11
torch>=1.7.0
12
torchvision>=0.8.1
13
tqdm>=4.41.0
14
15
# Logging -------------------------------------
16
tensorboard>=2.4.1
17
# wandb
18
19
# Plotting ------------------------------------
20
pandas>=1.1.4
21
seaborn>=0.11.0
22
23
# Export --------------------------------------
24
# coremltools>=4.1 # CoreML export
25
# onnx>=1.9.0 # ONNX export
26
# onnx-simplifier>=0.3.6 # ONNX simplifier
27
# scikit-learn==0.19.2 # CoreML quantization
28
# tensorflow>=2.4.1 # TFLite export
29
# tensorflowjs>=3.9.0 # TF.js export
30
# openvino-dev # OpenVINO export
31
32
# Extras --------------------------------------
33
# albumentations>=1.0.3
34
# Cython # for pycocotools https://github.com/cocodataset/cocoapi/issues/172
35
# pycocotools>=2.0 # COCO mAP
36
# roboflow
37
thop # FLOPs computation
38
39