There are several ways to export labels from a Kili project.
You can export a project using the kili project export
command:
kili project export \
--project-id <project_id> \
--output-format yolo_v5 \
--output-file /tmp/export.zip
More options here.
You can also use the Python SDK:
from kili.client import Kili
kili = Kili()
kili.export_labels(
project_id = "<project_id>",
filename = "/tmp/export.zip",
fmt = "yolo_v5",
)
More details here.
You can refer to this Kili documentation page.
Format | UI | Python Client | Command Line Interface |
---|---|---|---|
Kili (raw) | ✅ | ✅ | ✅ |
Kili (simple) | ✅ | ❌ | ❌ |
YOLO V4 | ✅ | ✅ | ✅ |
YOLO V5 | ✅ | ✅ | ✅ |
YOLO V7 | ❌ | ✅ | ✅ |
Pascal VOC | ✅ | ✅ | ✅ |
COCO | ❌ | ✅ | ✅ |
And more to come!