選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

20 行
704B

  1. # PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/
  2. # Download command: bash ./data/get_voc.sh
  3. # Train command: python train.py --data voc.yaml
  4. # Default dataset location is next to /yolov5:
  5. # /parent_folder
  6. # /VOC
  7. # /yolov5
  8. # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
  9. train: ../VOC/images/train/ # 16551 images
  10. val: ../VOC/images/val/ # 4952 images
  11. # number of classes
  12. nc: 20
  13. # class names
  14. names: ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog',
  15. 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor']