-
Hi, I have setup to log at Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
@ydcjeff how about this example : ignite/examples/contrib/mnist/mnist_with_wandb_logger.py Lines 105 to 110 in 915d69e See also OutputHandler docs about In this case you will log loss value on the iteration and not averaged one. If you like to compute an average value, then use |
Beta Was this translation helpful? Give feedback.
-
@vfdev-5 Thank you for your answer. Let me try it.
|
Beta Was this translation helpful? Give feedback.
@ydcjeff how about this example :
ignite/examples/contrib/mnist/mnist_with_wandb_logger.py
Lines 105 to 110 in 915d69e
See also OutputHandler docs about
output_transform
.In this case you will log loss value on the iteration and not averaged one. If you like to compute an average value, then use
RunningAverage
for that and thenmetric_names
fromOutputHandler
.