Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

voc.yaml 737 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  1. # PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/
  2. # Train command: python train.py --data voc.yaml
  3. # Default dataset location is next to YOLOv5:
  4. # /parent_folder
  5. # /VOC
  6. # /yolov5
  7. # download command/URL (optional)
  8. download: bash data/scripts/get_voc.sh
  9. # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
  10. train: ../VOC/images/train/ # 16551 images
  11. val: ../VOC/images/val/ # 4952 images
  12. # number of classes
  13. nc: 20
  14. # class names
  15. names: [ 'aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog',
  16. 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor' ]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...