Spaces:
Build error
Build error
commit
Browse files- data/voc.yaml +11 -0
data/voc.yaml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Please insure that your custom_dataset are put in same parent dir with YOLOv6_DIR
|
| 2 |
+
train: VOCdevkit/voc_07_12/images/train # train images
|
| 3 |
+
val: VOCdevkit/voc_07_12/images/val # val images
|
| 4 |
+
test: VOCdevkit/voc_07_12/images/val # test images (optional)
|
| 5 |
+
|
| 6 |
+
# whether it is coco dataset, only coco dataset should be set to True.
|
| 7 |
+
is_coco: False
|
| 8 |
+
# Classes
|
| 9 |
+
nc: 20 # number of classes
|
| 10 |
+
names: ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog',
|
| 11 |
+
'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor'] # class names
|