{{ runs|length }}
Total Runs
{{ runs|selectattr('state', 'equalto', 'running')|list|length }}
Running
{{ runs|selectattr('state', 'equalto', 'finished')|list|length }}
Finished
{{ runs|selectattr('state', 'equalto', 'failed')|list|length + runs|selectattr('state', 'equalto', 'crashed')|list|length }}
Failed
{% if runs %}
{% for run in runs %} {% endfor %}
Name State Created Tags Key Metrics Config
{{ run.display_name or run.run_id }}
{{ run.run_id }}
{% if run.state == 'running' %}{% endif %} {{ run.state }} {{ run.created_at[:19].replace('T', ' ') }} {% for tag in run.tags[:3] %} {{ tag }} {% endfor %} {% for key, val in run.latest_metrics.items() %} {% if loop.index <= 3 %}
{{ key }}: {{ "%.4f"|format(val.value) }}
{% endif %} {% endfor %} {% if not run.latest_metrics %} - {% endif %}
{% for key, val in run.config.items() %} {% if loop.index <= 3 and not key.startswith('_') %}
{{ key }}: {{ val }}
{% endif %} {% endfor %}
{% else %}

No runs yet

Start a training run pointed at this project to see results here.

import wandb
wandb.init(project="{{ project.name }}")
wandb.log({"loss": 0.5, "accuracy": 0.8})
{% endif %}

Share Project

Generate a public link that anyone can use to view this project (read-only).