{% extends "layout.html" %} {% block title %} Comparing {{ runs|length }} Runs {% endblock %} {% block contents %}
| {% for run in runs %} | Run {{ loop.index }} | {% endfor %}
|---|---|
| Start Date | {% for run in runs %}{{ run.start_date|format_date }} | {% endfor %}
| Source | {% for run in runs %}{{ run.source|default("", true) }} | {% endfor %}
| Revision | {% for run in runs %}{{ run.git_commit|format_git_commit }} | {% endfor %}
| Run ID | {% for run in runs %}{{ run.run_id }} | {% endfor %}
| {{ col }} | {% for run in runs %}{{ run.parameters[col]|default("", true) }} | {% endfor %}
| {{ col }} | {% for run in runs %}{% if not metrics_df[col][loop.index0]|isnan %} {{ metrics_df[col][loop.index0][-1]|round(2) }} {% endif %} | {% endfor %}
| Files | {% for run in runs %}
{% for key in run.output_files|sort %}
{{ key }} |
{% endfor %}