{% extends "base.html" %} {% block content %} {# ── Page header ── #}
Deploy
Your model is ready — use the guide below to run it in production
{% if not deploy_md %} {# ── Not ready yet ── #} {% else %} {# ── Instructions ── #}
DEPLOY.md — {{ run_name }}
{% if export_format %}{{ export_format }}{% endif %}
{{ deploy_md }}
{# ── Export info ── #} {% if export_meta %}
Export Info
Algorithm: {{ export_meta.plugin }}
Format: {{ export_meta.format }}
{{ export_meta.path }}
{% endif %} {# ── AutoML rankings ── #} {% if ranking %}
Algorithm Rankings

Score = suitability for your data (0–1)

{% for r in ranking %}
{{ r.name }} {{ "%.2f" | format(r.score) }}
{% endfor %}
{% endif %} {# ── Quick actions ── #}
Quick actions

Re-export in another format:

aimodelground export --format onnx

Update model with new data:

aimodelground models update
{% endif %} {% endblock %}