Why are the values of test, train, and val not test/images, train/images, and val/images?
Why is the format of the directory of test different than the other two?
It seems like the ultralytics YOLOv5 train.py script doesn’t handle that format correctly, and searches the files at base_dir/yolov5/2023-Vision-5. Why is that the output format if the official training script isn’t set up for it?
The export formats, while somewhat consistent throughout many frameworks, could handle things differently based on which script handles it.
With that said, our export formats should work with Ultralytics training scripts with none or minimal alterations, but we make the utmost effort to ensure they work in our own notebooks, such as the YOLOv5 training notebook, and our other notebooks, which you can view in our GitHub. If the dataset isn’t working with our notebooks, please let us know.
Thank you. It seems the problem was that I was downloading the dataset into base_dir/datasets/ and when doing it in the same directory of the script (base_dir/yolov5) it works correctly.