{% extends "base.html" %}
{% block content %}
Experiment: {{ short_id }}
Created |
{{ created }} |
Command |
{{ command }} |
Parameters |
{% for k, v in params.items() %}
{{ k }} |
{{ v }} |
{% endfor %}
Checkpoints
ID |
Created |
Step |
{% for i in all_metrics %}
{{ i }} |
{% endfor %}
{% for ch in checkpoints %}
{% if ch["best"] %}
{{ ch["id"]~" (best)" }} |
{% else %}
{{ ch["id"] }} |
{% endif %}
{{ ch["created"] }} |
{{ ch["step"] }} |
{% for i in all_metrics %}
{% if i in ch["metrics"] %}
{{ "%.3f"|format(ch["metrics"][i]) }} |
{% else %}
|
{% endif %}
{% endfor %}
{% endfor %}
{% endblock %}