Spaces:
Build error
Build error
commit
Browse files- data/dataset.yaml +11 -0
data/dataset.yaml
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Please insure that your custom_dataset are put in same parent dir with YOLOv6_DIR
|
2 |
+
train: ../custom_dataset/images/train # train images
|
3 |
+
val: ../custom_dataset/images/val # val images
|
4 |
+
test: ../custom_dataset/images/test # 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
|