Ultralytics Platform: can we export annotation data in any other format other than NDJSON?

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.