If metrics logged withDocumentation 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.
wandb.log() are not appearing in the W&B UI, there are several common causes.
SDK version issue
Certain SDK versions have known bugs that cause logged metrics to be silently dropped. If you recently upgraded or installed W&B and are seeing missing metrics, check your SDK version:
wandb.init()
Metrics logged before wandb.init() is called are silently discarded. Ensure wandb.init() is called before any wandb.log() calls:
wandb.finish()
Any wandb.log() calls after wandb.finish() are also discarded. If you call wandb.finish() mid-script and then log more data, those metrics will not appear.
Offline mode without syncing
If WANDB_MODE=offline is set, metrics are saved locally but not uploaded until you run wandb sync. Check whether the run shows data locally in your wandb/ directory and sync it:
wandb.init() should call wandb.log(). If multiple processes log to the same run without coordination, metrics can overwrite each other or drop. Use rank checks to ensure only one process logs:
Logs Metrics Experiments