{% extends "layout.html" %} {% block title %} Run {{ run.run_id }} {% endblock %} {% block contents %}
| Source: {{ run.source|default("", true) }} | Revision: {{ run.git_commit|format_git_commit }} |
| Start Time: {{ run.start_date|format_date }} | End Time: {{ run.end_date|format_date }} |
| Status: {{ run.status }} |
| Name | Value | {% for key, value in run.parameters|dictsort %}
|---|---|
| {{ key }} | {{ value }} |
No parameters recorded.
{% endif %}| Name | Value | {% for key, values in run.metrics|dictsort %}
|---|---|
| {{ key }} | {{ values|sparkline|safe }} {{ values[-1]|round(2) }} |
No metrics recorded.
{% endif %}
{% for key in run.output_files|sort %}
{{ key }}
{% endfor %}
No output files recorded.
{% endif %} {% endblock %}