Replies: 3 comments 1 reply
-
Hi @vsk-phi , |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @vsk-phi , you can use https://pytorch.org/ignite/generated/ignite.handlers.stores.EpochOutputStore.html#epochoutputstore to collect all outputs. |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi,
Thanks both so much for super fast response. It seems that I can use this; probably I didn’t search the documentation enough ☹
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I want to use the supervised evaluator to collect the prediction results. What i found is that after collecting the state of the evaluator eg
state = evaluator.run(data_loader, max_epochs=1)
, the state.output has y_pred,y only for the last batch.Is there a way one can collect the output of all batches, if not necessarily in one go?
The use case is that, i want to write the output predictions, as well as the file names. I can conceivably do this separately with a simple iteration over the val_loader with nograd, however i want to know if this can be done in an evaluator run.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions