You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
607B

  1. # PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/
  2. # Download command: bash yolov5/data/get_voc.sh
  3. # Train command: python train.py --data voc.yaml
  4. # Dataset should be placed next to yolov5 folder:
  5. # /parent_folder
  6. # /VOC
  7. # /yolov5
  8. # train and val datasets (image directory or *.txt file with image paths)
  9. train: ../VOC/images/train/
  10. val: ../VOC/images/val/
  11. # number of classes
  12. nc: 20
  13. # class names
  14. names: ['aeroplane', 'bicycle','bird','boat','bottle','bus','car','cat','chair','cow','diningtable','dog','horse','motorbike','person','pottedplant','sheep','sofa','train','tvmonitor']