{% extends "layout.html" %} {% block title %} Comparing {{ runs|length }} Runs {% endblock %} {% block contents %}

Comparing {{ runs|length }} Runs

{% for run in runs %} {% endfor %} {% for run in runs %} {% endfor %} {% for run in runs %} {% endfor %} {% for run in runs %} {% endfor %} {% for run in runs %} {% endfor %} {% for col in params_df.columns %} {% for run in runs %} {% endfor %} {% endfor %} {% for col in metrics_df.columns %} {% for run in runs %} {% endfor %} {% endfor %} {% for run in runs %} {% endfor %}
Run {{ loop.index }}
Start Date {{ run.start_date|format_date }}
Source{{ run.source|default("", true) }}
Revision{{ run.git_commit|format_git_commit }}
Run ID {{ run.run_id }}
{{ col }} {{ run.parameters[col]|default("", true) }}
{{ col }} {% if not metrics_df[col][loop.index0]|isnan %} {{ metrics_df[col][loop.index0][-1]|round(2) }} {% endif %}
Files

{% for key in run.output_files|sort %} {{ key }}
{% endfor %}

{% if run.output_files %}

Download All

{% endif %}
{% endblock %}