{% extends "base.html" %} {% set active_page = "experiments" %} {% block title %}{{ experiment.name }} Runs{% endblock %} {% block page_title %} {{ experiment.name }}{% endblock %} {% block topnav_actions %} {% endblock %} {% block content %}
All Experiments {{ runs | length }} runs
Filter:
{% if runs and runs[0].task_type == 'classification' %} {% else %} {% endif %} {% for r in runs %} {% if r.task_type == 'classification' %} {% set acc = r.metrics.get('accuracy', 0) %} {% else %} {% set r2 = r.metrics.get('r2_score', 0) %} {% endif %} {% else %} {% endfor %}
Run IDAlgorithmCategoryTaskAccuracyF1PrecisionRecallMAERMSEDurationStarted
{{ r.run_id_short }} {{ r.algorithm }} {{ r.category }} {{ r.task_type }}{{ acc }} {{ r.metrics.get('f1_score', '—') }} {{ r.metrics.get('precision', '—') }} {{ r.metrics.get('recall', '—') }}{{ r2 }} {{ r.metrics.get('mae', '—') }} {{ r.metrics.get('rmse', '—') }}{{ r.duration }}s {{ r.start_time }}
📊
No runs in this experiment
{% endblock %} {% block scripts %} {% endblock %}