{% extends "base.html" %} {% block content %} {# ── Page header ── #}
aimodelground run.eval_join node completes, results appear here automatically.aimodelground run to export.aimodelground tune --trials 50 to auto-tune hyperparameters, or add more data.| Metric | Value | |
|---|---|---|
| {{ k }} | {{ "%.4f" | format(v) }} | {% if k in ("accuracy", "f1", "auc") %} higher = better {% elif k in ("rmse", "mae") %} lower = better {% endif %} |
| {{ feat }} |
|
{{ "%.3f" | format(score) }} |
| Metric | {{ selected_run }} | {{ compare_run }} | Delta |
|---|---|---|---|
| {{ k }} | {% if va is not none %}{{ "%.4f" | format(va) }}{% else %}—{% endif %} | {% if vb is not none %}{{ "%.4f" | format(vb) }}{% else %}—{% endif %} | {% if va is not none and vb is not none %} {% set delta = vb - va %} {{ "%+.4f" | format(delta) }} {% else %}—{% endif %} |
Happy with results?
1. Go to Pipeline and click Approve on the review_results gate.
2. Run aimodelground run to export the model and generate your deployment guide.
Want to improve?
- Tune hyperparameters: aimodelground tune --trials 50
- Re-run from training with new config: aimodelground run --from train_rf
- Compare another run: click a run button above and add ?compare=run_001 to the URL.