{{ projects|length }}
Total Projects
0
Total Runs
-
Active Runs
{% if projects %}
{% for project in projects %}

{{ project.name }} {% if project.visibility == 'public' %} public {% elif project.visibility == 'private' %} private {% endif %}

{{ project.description or 'No description' }}

{{ project.run_count }} runs {{ project.created_at[:10] }} {{ project.entity }}
{% endfor %}
{% else %}

No projects yet

Start logging experiments and they'll appear here. Use the wandb SDK with this server:

export WANDB_BASE_URL=http://localhost:8080
export WANDB_API_KEY=local0000000000000000000000000000000000000000

import wandb
wandb.init(project="my-project")
wandb.log({"loss": 0.5})
{% endif %}