Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 1.54 KB

label_export.md

File metadata and controls

44 lines (36 loc) · 1.54 KB

Exporting kili projects

There are several ways to export labels from a Kili project.

With the CLI

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.

With the Python SDK

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.

From the Kili UI

You can refer to this Kili documentation page.

Available formats

Format UI Python Client Command Line Interface
Kili (raw)
Kili (simple)
YOLO V4
YOLO V5
YOLO V7
Pascal VOC
COCO

And more to come!