yolov13.yaml 842 B

123456789101112131415161718192021222324
  1. # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
  2. # COCO 2017 dataset https://cocodataset.org by Microsoft
  3. # Documentation: https://docs.ultralytics.com/datasets/detect/coco/
  4. # Example usage: yolo train data=coco.yaml
  5. # parent
  6. # ├── ultralytics
  7. # └── datasets
  8. # └── coco ← downloads here (20.1 GB)
  9. # Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
  10. path: D:\ultralytics-main\ultralytics-main\datasets_merged # 数据集根目录
  11. train: images/train # 训练集图片文件夹(相对于path)
  12. val: images/val # 验证集图片文件夹(相对于path)
  13. test: images/test # 测试集图片文件夹(相对于path)
  14. # Classes
  15. names:
  16. 0: fire
  17. 1: dust
  18. 2: move_machine
  19. 3: open_machine
  20. 4: close_machine