Help us improve these docs. Take our quick survey.
Yes, set run.name = run.id after wandb.init() to use the run ID as the display name.
import wandb with wandb.init() as run: run.name = run.id run.save()
Was this page helpful?