{% extends "base.html" %} {% block breadcrumbs %} › Runs › Compare{% endblock %} {% block title %}Compare runs — {{ site_title }}{% endblock %} {% block content %}
Line up parameters and metrics side by side to see what actually changed.
| {% for run in runs %} | {{ run.short_id }} | {% endfor %}
|---|---|
| target | {% for run in runs %}{{ run.target }} | {% endfor %}
| status | {% for run in runs %}{{ run.status }} | {% endfor %}
| duration | {% for run in runs %}{{ run.duration_s | duration }} | {% endfor %}
| {{ key }} | {% for run in runs %}{{ (run.params or {}).get(key, '—') | short(40) }} | {% endfor %}
| {{ key }} | {% for run in runs %}{{ (run.summary or {}).get(key) | number }} | {% endfor %}
None of those run ids matched.
{% else %}Paste two or more run ids to compare them.
{% endif %}