{% extends "base.html" %}
{% block title %}{{ q.title }}{% endblock %}
{% block content %}
{{ q.description }}{{ q.title }}
| Experiment | Hypothesis | Verdict | Value | Delta | Dataset | Ran | Owner |
|---|---|---|---|---|---|---|---|
| {{ r.id }} {{ r.title }} | {{ r.hypothesis or ('(baseline)' if r.kind == 'baseline' else '—') }} | {{ r.verdict or r.status }} {% if r.verdict_state != 'current' %}{{ r.verdict_state }}{% endif %} | {% if r.primary %}{{ r.primary.value | num }}{% else %}—{% endif %} | {% if r.primary and r.primary.delta is not none %} {{ r.primary.delta | delta }} {% else %}—{% endif %} | {{ r.dataset_versions | join(', ') or '—' }} | {{ r.run_date or '—' }} | {{ r.owner or '—' }} |
{{ r.id }}: {{ r.invalidation_reason }}
{% endif %}{% endfor %} {% endif %}Rows are partitioned by comparability group (primary_metric, dataset_version, baseline). Numbers from different groups are not comparable and never share a column.
{% endif %} {% else %}No experiments under this question yet.
{% endif %}