Differentiating multiple trainer.test runs #14589
Unanswered
lr1100
asked this question in
code help: CV
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am running the test loop multiple times by calling training.test with different checkpoints by setting ckpt_path=checkpoint_callbacks[i].best_model_path.
I need to have access to the checkpoint.monitor in the LightningModule's test function (or test_epoch_end) so I can save off the artifacts with unique and descriptive names.
How might I reference the monitor of the checkpoint that was passed to trainer.test(ckpt_path? in the LightningModules test (or test_epch_end) function.
Is there a way to pass the string into trainer.test itself?
Beta Was this translation helpful? Give feedback.
All reactions