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