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.

22 satır
849B

  1. # Argoverse-HD dataset (ring-front-center camera) http://www.cs.cmu.edu/~mengtial/proj/streaming/
  2. # Train command: python train.py --data argoverse_hd.yaml
  3. # Default dataset location is next to /yolov5:
  4. # /parent_folder
  5. # /argoverse
  6. # /yolov5
  7. # download command/URL (optional)
  8. download: bash data/scripts/get_argoverse_hd.sh
  9. # train and val data as 1) directory: path/images/, 2) file: path/images.txt, or 3) list: [path1/images/, path2/images/]
  10. train: ../argoverse/Argoverse-1.1/images/train/ # 39384 images
  11. val: ../argoverse/Argoverse-1.1/images/val/ # 15062 iamges
  12. test: ../argoverse/Argoverse-1.1/images/test/ # Submit to: https://eval.ai/web/challenges/challenge-page/800/overview
  13. # number of classes
  14. nc: 8
  15. # class names
  16. names: [ 'person', 'bicycle', 'car', 'motorcycle', 'bus', 'truck', 'traffic_light', 'stop_sign' ]