Interactive demo — www.mlops.dev

Deploy a model to your
edge fleet in 4 steps.

This is a real, working demo. Use the steps to register a model, install the agent, run a canary deployment, and watch drift alerts fire — all wired to the actual MLOps.dev backend.

mlops.dev — product walkthrough
3 min
0:00 / 3:00
Interactive walkthrough

Try it yourself — step by step.

Each step below is interactive and connected to the real MLOps.dev API. When the backend is offline you'll see realistic mock responses so you can still feel the product.

Register your ML model

Give the model a name and pick a format. MLOps.dev stores it in the registry with full version history and hardware compatibility metadata.

→ Supports TFLite, ONNX, TensorRT, PyTorch TorchScript
mlops.dev CLI
$ mlops login --token <your-api-key>
Authenticated as you@company.com
$ mlops model push ./model.onnx \
    --name defect-detector \
    --tag v4.0 --hw jetson
Compressing…

Install the edge agent

One command on your edge device. The open-source agent pulls the latest model from the registry, starts local inference, and begins streaming telemetry to the control plane.

→ <8MB binary. Runs on any Linux ARM device with 256MB RAM.
jetson-prod-01 — SSH
$ curl -fsSL get.mlops.dev | sh
Detecting architecture… arm64
Downloading mlops-agent v3.2 (7.4MB)…
Installing to /usr/local/bin/mlops-agent
Agent installed successfully
$ mlops-agent start --token $MLOPS_TOKEN

Run a canary deployment

Deploy the new model to a slice of your fleet first. MLOps.dev monitors each device's health metrics before opening the rollout to the full fleet.

→ Health gate: if accuracy drops >5% or latency spikes >2× the rollout halts automatically.
mlops.dev — deployment log
$ mlops deploy defect-detector:v4.0 \
    --strategy canary --canary-pct 10
Awaiting launch…

Live drift detection

MLOps.dev monitors your model's input distributions and output confidence in real-time. When drift crosses the configured threshold, it fires an alert — and can trigger an automatic rollback.

→ Threshold: warn at 40%, auto-rollback at 70%
mlops.dev — drift monitor
Fleet drift scan running…
[jetson-prod-01] drift=12% OK
[coral-ret-03] drift=8% OK
[rpi5-fac-07] drift=48% WARN
[arm-wh-11] drift=19% OK
Demo complete. 🎉

You just saw the full MLOps.dev workflow — model registry, agent install, canary deployment, and drift alerting. This is what every team deploying ML to edge devices needs.