{% extends "base.html" %} {% block title %}Experiments — ABREKA{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}

Experiments

{% if status_filter %} {{ status_filter }} (clear filter) {% endif %}
{% if experiments %}
{% for exp in experiments %} {% endfor %}
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] }}
{% else %}

No experiments found{% if status_filter %} with status "{{ status_filter }}"{% endif %}.

{% endif %} {% endblock %}