BENCHMARK RUN
{{ run.label }}
{% if run.is_active %}
ACTIVE CONFIGURED
{% elif run.live_graph_source_run_id %}
HISTORICAL SCORE + LIVE SOURCE
{% else %}
ARTIFACT-ONLY
{% endif %}
{% if run.is_active %}
ACTIVE CONFIGURED — Live graph projection becomes available when you open a task.
{% elif run.live_graph_source_run_id %}
HISTORICAL SCORE + LIVE SOURCE GRAPH — Scores remain frozen to this run; task graph data is read live from {{ run.live_graph_source_run_id }}.
{% else %}
ARTIFACT-ONLY: This run's graph data is not available. Only manifest and checkpoint data are shown.
{% endif %}
{% if run.phases %}
Phases
| Phase | Status | Completed |
{% for phase in run.phases %}
| {{ phase.phase }} | {{ phase.status }} | {{ phase.completed_at[:16] if phase.completed_at else '—' }} |
{% endfor %}
{% endif %}
{% if run.arms %}
Arm scores
| Arm | Completed | Correct | Score |
{% for arm_name, arm_data in run.arms | dictsort %}
| {{ arm_name }} | {{ arm_data.n }} | {{ arm_data.correct }} | {{ (arm_data.correct / arm_data.n * 100) | round(1) if arm_data.n else '—' }}% |
{% endfor %}
{% endif %}
Tasks ({{ run.total_items }})
{% if run.tasks %}
{% else %}
No tasks found in this run.
{% endif %}
{% endblock %}
{% block extra_head %}
{% endblock %}