You can convert Label Studio JSON snapshots to other external formats like CSV, YOLO, COCO, etc manually. For this you need to install label-studio-converter
python lib and call it. There is an example of TSV conversion:
- Install label-studio-converter
pip install -U label-studio-converter
-
Download JSON snapshot from LSE and save e.g. as
snapshot.json
-
Copy your labeling config from the project and save it as
config.xml
-
Convert
label-studio-converter export -i snapshot.json -o snapshot -f TSV -c config.xml
snapshot
directory will be created with result.csv
file in TSV
format.