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! |
Beta Was this translation helpful? Give feedback.
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! |
Beta Was this translation helpful? Give feedback.
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