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.

преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
преди 4 години
123456789101112131415161718
  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. # 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',
  15. 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor']