## YOLO Format * https://docs.voxel51.com/user_guide/dataset_creation/datasets.html#yolov5dataset * https://docs.ultralytics.com/yolov5/tutorials/train_custom_data/#13-prepare-dataset-for-yolov5 ```text classes.txt images/<img1>.<ext> ... labels/<img1>.txt ... ``` Text files contain lines with `<int> <float> <float> <float> <float>` Not every image file might have a label text file. ## COCO Format * https://docs.voxel51.com/user_guide/dataset_creation/datasets.html#cocodetectiondataset-import * https://cocodataset.org/#format-data ```text labels.json images/*... ```
YOLO
Format
Text files contain lines with
<int> <float> <float> <float> <float>Not every image file might have a label text file.
COCO
Format