You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your code, there's an argument called reset_teacher, which re-initializes the momentum network denoted as self.slow_net.
I would like to know when does reset_teacher = True, so that the momentum gets re-initialized to the state of the actual SegmentationNet denoted as self.backbone.
Because from what I understood, the MomentumNet gets initialized from the beginning to be equal to SegmentationNet, then gets updated using the exponential moving average formula and never gets re-intialized.
Thank you very much !! 😃
The text was updated successfully, but these errors were encountered:
Hi,
In your code, there's an argument called
reset_teacher
, which re-initializes the momentum network denoted asself.slow_net
.I would like to know when does reset_teacher = True, so that the momentum gets re-initialized to the state of the actual SegmentationNet denoted as
self.backbone
.Because from what I understood, the
MomentumNet
gets initialized from the beginning to be equal toSegmentationNet
, then gets updated using the exponential moving average formula and never gets re-intialized.Thank you very much !! 😃
The text was updated successfully, but these errors were encountered: