posteriors list in multi-round training #1366
|
Good evening, I'm working on a project and we're trying to implement multi-round training, similar to the steps laid out in the multi-round inference tutorial. I noticed that there is a list called "posteriors" defined before the training rounds, and each posterior is appended into this list upon completion of that round of training. However, this list is never again accessed. I have two questions from this: is the list even necessary/can I ignore it to save space? or is the code missing a line (or a few) that would use the posteriors list? Thanks! |
Answered by
michaeldeistler
Jan 15, 2025
Replies: 1 comment 1 reply
|
Hi there! Yes, you can ignore the list. It is only useful if you want to inspect the posterior after every round in the end. Hope that helps! |
1 reply
Answer selected by
janfb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there!
Yes, you can ignore the list. It is only useful if you want to inspect the posterior after every round in the end.
Hope that helps!
Michael