| 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 %}
|
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})