* YOLOv5 forward compatibility update * add data dir * ci test yolov3 * update build_targets() * update build_targets() * update build_targets() * update yolov3-spp.yaml * add yolov3-tiny.yaml * add yolov3-tiny.yaml * Update yolov3-tiny.yaml * thop bug fix * Detection() device bug fix * Use torchvision.ops.nms() * Remove redundant download mirror * CI tests with yolov3-tiny * Update README.md * Synch train and test iou_thresh * update requirements.txt * Cat apriori autolabels * Confusion matrix * Autosplit * Autosplit * Update README.md * AP no plot * Update caching * Update caching * Caching bug fix * --image-weights bug fix * datasets bug fix * mosaic plots bug fix * plot_study * boxes.max() * boxes.max() * boxes.max() * boxes.max() * boxes.max() * boxes.max() * update * Update README * Update README * Update README.md * Update README.md * results png * Update README * Targets scaling bug fix * update plot_study * update plot_study * update plot_study * update plot_study * Targets scaling bug fix * Finish Readme.md * Finish Readme.md * Finish Readme.md * Update README.md * Creado con Colaboratory
22 lines
735 B
YAML
22 lines
735 B
YAML
# PASCAL VOC dataset http://host.robots.ox.ac.uk/pascal/VOC/
|
|
# Train command: python train.py --data voc.yaml
|
|
# Default dataset location is next to /yolov3:
|
|
# /parent_folder
|
|
# /VOC
|
|
# /yolov3
|
|
|
|
|
|
# download command/URL (optional)
|
|
download: bash data/scripts/get_voc.sh
|
|
|
|
# train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
|
|
train: ../VOC/images/train/ # 16551 images
|
|
val: ../VOC/images/val/ # 4952 images
|
|
|
|
# number of classes
|
|
nc: 20
|
|
|
|
# class names
|
|
names: ['aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog',
|
|
'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor']
|