Skip to main content

Documentation Index

Fetch the complete documentation index at: https://wb-21fd5541-kb-refresh.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Does logging block my training?

“Is the logging function lazy? I don’t want to depend on the network to send results to your servers while executing loc …

How can I overwrite the logs from previous steps?

To overwrite logs from previous steps, use forking and rewind.

How do I download the console log file from a run?

W&B captures your training script’s stdout and stderr output and stores it as output.log in the run’s file storage. Wher …

How do I log a list of values?

These examples show logging losses a couple of different ways using wandb.Run.log(). For more, see the documentation on …

How do I log runs launched by continuous integration or internal tools?

To launch automated tests or internal tools that log to W&B, create a Service Account on the team settings page. This ac …

How do I log to the right wandb user on a shared machine?

When using a shared machine, ensure that runs log to the correct WandB account by setting the WANDB_API_KEY environment …

How do I turn off logging?

The command wandb offline sets the environment variable WANDB_MODE=offline, preventing data from syncing to the remote W …

Which files should I check when my code crashes?

For the affected run, check debug.log and debug-internal.log in wandb/run- _ - /logs in the directory where your code is …

Why are my metrics missing from wandb.log()?

If metrics logged with wandb.log() are not appearing in the W&B UI, there are several common causes. SDK version issue C …

Why is console output not captured for my run?

W&B captures your script’s stdout and stderr output and stores it as output.log on the run’s Files tab. By default, the …