I am using yolov5 to train on custom datasetmy dataset.yaml file contains
path: ../testingtrain: imagesval: imagesnc: 10names: ["door", "cabinetDoor", "refrigeratorDoor", "window", "chair","table", "cabinet", "couch", "openedDoor", "pole"]
The directory of dataset is as follows
CustomTraining├── yolov5├── testing├── images│├── train (1024 images)│└── val (230 images )└── labels├── train└── val
command I run is
!cd yolov5 && python train.py --img 512 --batch 10 --epoch 100 --data dataset.yml --weights yolov5s.pt
but when I see my runs/train directory in yolov5 folder the exp folders does not have any jpeg files and weights folders are also empty