PyTorch Ignite
3 minute read
- See the resulting visualizations in this example W&B report →
- Try running the code yourself in this example hosted notebook →
Ignite supports Weights & Biases handler to log metrics, model/optimizer parameters, gradients during training and validation. It can also be used to log model checkpoints to the Weights & Biases cloud. This class is also a wrapper for the wandb module. This means that you can call any wandb function using this wrapper. See examples on how to save model parameters and gradients.
Basic setup
Using WandBLogger
in ignite is a modular process. First, you create a WandBLogger object. Next, you attach it to a trainer or evaluator to automatically log the metrics. This example:
- Logs training loss, attached to the trainer object.
- Logs validation loss, attached to the evaluator.
- Logs optional Parameters, such as learning rate.
- Watches the model.
You can optionally utilize ignite EVENTS
to log the metrics directly to the terminal
This code generates these visualizations::




Refer to the Ignite Docs for more details.
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.