YoloV8 Dataset Structure

Hi,

I want to export dataset into YoloV8 format to do custom training for classification.

But the dataset structure should look like this :

cifar-10-/
|
|-- train/
|   |-- airplane/
|   |   |-- 10008_airplane.png
|   |   |-- 10009_airplane.png
|   |-- automobile/
|   |   |-- 10010_automobile.png
|   |   |-- 10011_automobile.png

instead of this :

cifar-10-/
|
|-- train/
|   |-- images/
|   |   |-- 10008_airplane.png
|   |   |-- 10009_airplane.png
|   |-- labels/
|   |   |-- 10010_automobile.txt
|   |   |-- 10011_automobile.txt

Is there something I don’t get ?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.