Loading...
Loading...
Prepare and point datasets at the getitune library (the Geti training library) for training, testing, and prediction. Use when a user asks which dataset formats are supported, how the `data=` argument of `create_engine(...)` / `--data_root` works, why format auto-detection fails, how to lay out COCO/YOLO/Pascal VOC/Datumaro-native data, how to use a zip archive, or how to pass an Ultralytics YOLO `data.yaml`. Covers Datumaro-based auto-detection and per-task data expectations.
npx skill4agent add open-edge-platform/geti getitune-preparing-datasetsdata=--data_rootgetitunelibrary/| Format | Detected by |
|---|---|
| COCO | an |
| YOLO | a |
| Pascal VOC | |
| Datumaro (native) | |
data=from getitune.engine import create_engine
# Same call for any supported format — just point at the root
engine = create_engine(
model="src/getitune/recipe/detection/yolox_s.yaml",
data="/path/to/dataset_root",
)
engine.train()getitune-training-a-modelcreate_engine(...)engine.train(max_epochs=1)data.yamldata=--data_rootultralyticsannotations/data.yamlmetadata.jsondata.parquetgetitune-training-a-modeltask=application/backend/app/datumaro_converter/data=getitune-training-a-modeldata=getitune-discovering-models