{% extends "base.html" %} {% block breadcrumbs %} › Runs › Compare{% endblock %} {% block title %}Compare runs — {{ site_title }}{% endblock %} {% block content %}

Compare runs

Line up parameters and metrics side by side to see what actually changed.

{% if runs %}
{% for run in runs %} {% endfor %} {% for run in runs %}{% endfor %}{% for run in runs %}{% endfor %}{% for run in runs %}{% endfor %} {% for key in param_keys %} {% for run in runs %}{% endfor %} {% endfor %} {% for key in metric_keys %} {% for run in runs %}{% endfor %} {% endfor %}
{{ run.short_id }}
target{{ run.target }}
status{{ run.status }}
duration{{ run.duration_s | duration }}
{{ key }}{{ (run.params or {}).get(key, '—') | short(40) }}
{{ key }}{{ (run.summary or {}).get(key) | number }}
{% elif ids %}

None of those run ids matched.

{% else %}

Paste two or more run ids to compare them.

{% endif %}
{% endblock %}