{% extends "_base.html" %} {% block title %}Compare experiments · {{ project.name | humanize }} · Urika{% endblock %} {% block heading %}Compare experiments{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{% if selected_ids %}{{ eid }}
[{{ per_exp[eid].status }}, {{ per_exp[eid].n_runs }} runs]
{% if per_exp[eid].method %}— {{ per_exp[eid].method }}{% endif %}
{% endfor %}
| Metric | {% for eid in selected_ids %}{{ eid }} |
{% endfor %}
|
|---|---|---|
| {{ row.metric }} | {% for cell in row.cells %} {% if cell.value is none %}— | {% else %}{{ "%.4g" | format(cell.value) }} | {% endif %} {% endfor %}
No numeric metrics in the selected experiments' best runs.
{% endif %} {% else %}No experiments to compare yet. Create some via urika run or the
+ New experiment button.