getitune-exporting-a-model

Installation
SKILL.md

Exporting a model with getitune

After training, export a model to a deployable format with engine.export(...) (Python API) or getitune export (CLI). getitune exports to OpenVINO IR (default) or ONNX, each at FP32 (default) or FP16 precision. Exported artifacts load back for inference via the OpenVINO/ONNX path (see the getitune-running-inference skill).

Run everything from library/.

Python API workflow

from getitune.engine import create_engine
from getitune.types import ExportFormat, Precision
Installs
14
GitHub Stars
1.3K
First Seen
9 days ago
getitune-exporting-a-model — open-edge-platform/geti