API Playground
Try it live
Pick a model, choose a strategy, and see optimization results in real time. No signup required.
Demo API Key:
lmx_demo_key_12345Select a model and click Run to see results
Integration
Start in minutes
import lumoxic
client = lumoxic.Client("lmx_demo_key_12345")
result = client.optimize(
model="./my_model.onnx",
target="mobile",
strategy="auto"
)
print(result.delta)
# {'size_reduction': '8.1x', 'speedup': '7.6x', ...}
result.download("./optimized_model.onnx")API Reference
Endpoints
POST
/v1/optimizeGET
/v1/jobs/{id}GET
/v1/jobs/{id}/resultGET
/v1/models/{id}/downloadPOST
/v1/benchmarkGET
/v1/usage