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_12345

Select 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/optimize
GET/v1/jobs/{id}
GET/v1/jobs/{id}/result
GET/v1/models/{id}/download
POST/v1/benchmark
GET/v1/usage

Let's optimize!