{% 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 %}
| Run ID | Algorithm | Category | Task | {% if runs and runs[0].task_type == 'classification' %}Accuracy | F1 | Precision | Recall | {% else %}R² | MAE | RMSE | {% endif %}Duration | Started | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ r.run_id_short }} |
{{ r.algorithm }} | {{ r.category }} | {{ r.task_type }} | {% if r.task_type == 'classification' %} {% set acc = r.metrics.get('accuracy', 0) %}{{ acc }} | {{ r.metrics.get('f1_score', '—') }} | {{ r.metrics.get('precision', '—') }} | {{ r.metrics.get('recall', '—') }} | {% else %} {% set r2 = r.metrics.get('r2_score', 0) %}{{ r2 }} | {{ r.metrics.get('mae', '—') }} | {{ r.metrics.get('rmse', '—') }} | {% endif %}{{ r.duration }}s | {{ r.start_time }} | |
|
No runs in this experiment | |||||||||||||