-
-
Notifications
You must be signed in to change notification settings - Fork 90
Open
Description
During my debugging I came across the computation of the updated value for the running mean:
Line 80 in 5b984b0
| new_mean = mean + delta + batch_count / tot_count |
It doesn't really influence me as I'm not using it right now but I feel like it should instead be:
new_mean = mean + delta * batch_count / tot_count Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels