{% extends "base.html" %} {% block content %}

Deploy

Your model is ready — use the guide below to run it in production

{% if not deploy_md %}
Deployment guide not generated yet.
  1. Go to Run and approve the review_results gate.
  2. Click Run Pipeline — the export and deploy_advisor nodes will run.
  3. Or trigger manually: aimodelground deploy --regenerate
{% else %}
DEPLOY.md — {{ run_name }}
{% if export_format %}{{ export_format }}{% endif %}
{{ deploy_md }}
{% if export_meta %}
Export Info
Algorithm: {{ export_meta.plugin }}
Format: {{ export_meta.format }}
{{ export_meta.path }}
{% endif %} {% 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
Query Model → View Metrics Back to Pipeline
Re-export: aimodelground export --format onnx
{% endif %} {% endblock %}