(Using Ultralytics Platform)
Can we export annotation data in any other format other than NDJSON?
I’d like to export annotations data in yolo format. Is this possible?
(Using Ultralytics Platform)
Can we export annotation data in any other format other than NDJSON?
I’d like to export annotations data in yolo format. Is this possible?
Currently, export is only possible in NDJSON format. However, you can convert NDJSON to YOLO dataset using Ultralytics
from ultralytics.data.converter import convert_ndjson_to_yolo
await convert_ndjson_to_yolo("dataset.ndjson")
This will create a dataset folder with images and labels in YOLO format.