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
The default policy of using aggregation='mean' is incorrect. This should be set to none. Backends do the grad reductions and var applications in distributed contexts and don't need this mean. The usage of aggregation='mean' breaks optimizer moment estimates. Also compare with keras==2.15.0 where default policy was equivalent to aggregation='none'
The text was updated successfully, but these errors were encountered:
The default policy of using
aggregation='mean'
is incorrect. This should be set tonone
. Backends do the grad reductions and var applications in distributed contexts and don't need this mean. The usage ofaggregation='mean'
breaks optimizer moment estimates. Also compare withkeras==2.15.0
where default policy was equivalent toaggregation='none'
The text was updated successfully, but these errors were encountered: