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 the update_average function of EMA class in modules.py,the update step is:
old * self.beta + (1 - self.beta) * new
should it be "new * self.beta + (1 - self.beta) * old"?