/ character separates logged panels in the W&B UI. By default, the segment of the logged item’s name before the / defines a group of panels known as a “Panel Section.”
/.
Experiments
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
/ character separates logged panels in the W&B UI. By default, the segment of the logged item’s name before the / defines a group of panels known as a “Panel Section.”
import wandb
with wandb.init() as run:
run.log({"val/loss": 1.1, "val/acc": 0.3})
run.log({"train/loss": 0.1, "train/acc": 0.94})
/.
Was this page helpful?