Spaces:
Runtime error
Runtime error
File size: 382 Bytes
2b8f2ce |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# COCO 2017 dataset http://cocodataset.org
# download command/URL (optional)
download: bash ./scripts/get_coco.sh
# train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
train: ../train/images
val: ../valid/images
# number of classes
nc: 5
# class names
names: ['Ambulance', 'Bus', 'Car', 'Motorcycle', 'Truck']
|