Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

voc.yaml 628B

4 lat temu
4 lat temu
4 lat temu
4 lat temu
4 lat temu
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']