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/data/yolov5obb_demo_split.yaml
Views: 475
1
2
3
# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
4
path: ./dataset # dataset root dir
5
train: dataset_demo_rate1.0_split1024_gap200/images #images # train images (relative to 'path')
6
val: dataset_demo_rate1.0_split1024_gap200/images #images # val images (relative to 'path')
7
test: dataset_demo_rate1.0_split1024_gap200/images #images # test images (optional)
8
9
# Classes
10
nc: 16 # number of classes
11
names: ['plane', 'baseball-diamond', 'bridge', 'ground-track-field', 'small-vehicle',
12
'large-vehicle', 'ship', 'tennis-court', 'basketball-court', 'storage-tank',
13
'soccer-ball-field', 'roundabout', 'harbor', 'swimming-pool', 'helicopter',
14
'container-crane'] # class names
15
16
17
# Download script/URL (optional)
18
# download: https://ultralytics.com/assets/coco128.zip
19
20