{% extends "base.html" %} {% block title %}Experiments — ABREKA{% endblock %} {% block breadcrumb %}
{% endblock %} {% block content %} {% if experiments %}| ID{% if sort_by == 'id' %} {{ '▲' if order == 'asc' else '▼' }}{% endif %} | Status | Hypothesis | {{ primary_metric }}{% if sort_by == 'metric' %} {{ '▲' if order == 'asc' else '▼' }}{% endif %} | Parents | Tags | Created{% if sort_by == 'created' %} {{ '▲' if order == 'asc' else '▼' }}{% endif %} |
|---|---|---|---|---|---|---|
| {{ exp.id }} | {{ exp.status }} | {{ exp.hypothesis[:60] }}{% if exp.hypothesis|length > 60 %}...{% endif %} | {% if exp.metrics and pm_split and exp.metrics.get(pm_split, {}).get(pm_key) is not none %} {{ "%.4f" | format(exp.metrics[pm_split][pm_key]) }} {% elif exp.metrics %} {% for split, kvs in exp.metrics.items() %} {% for k, v in kvs.items() %} {% if loop.first %}{{ "%.4f" | format(v) }}{% endif %} {% endfor %} {% if loop.first %}{% endif %} {% endfor %} {% else %} — {% endif %} | {% for p in exp.parents %} {{ p }}{% if not loop.last %}, {% endif %} {% endfor %} {% if not exp.parents %}—{% endif %} | {% for t in exp.get('tags', []) %} {{ t }} {% endfor %} | {{ exp.created_at[:10] }} |
No experiments found{% if status_filter %} with status "{{ status_filter }}"{% endif %}.