-
👋 Hello everybody! I'm wondering what's the clean way to obtain validation loss from supervised evaluator. It seems there is no loss stored in engine.state.output in SupervisedEvaluator. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @SandroRybarik , I think we usually don't compute loss during evaluation, same as ignite: Thanks. |
Beta Was this translation helpful? Give feedback.
-
Thank you for quick response. What I'm trying to achieve is calculate training loss and validation loss during training phase. |
Beta Was this translation helpful? Give feedback.
Thank you for quick response.
What I'm trying to achieve is calculate training loss and validation loss during training phase.
I see now that SupervisedEvaluator is not suited for this kind of task.
Is there any other way to get validation loss without rewriting training loop back to plain pytorch?