Wednesday, May 19, 2021

 

MomentumUses exponential moving average of current and previous gradient
AdagradUses squared current and previous gradients and uses its sqrt in the divisor of lr 
RMSPropUses exponential moving  average of squares of current and previous gradients and uses its sqrt in the divisor of lr
Adam1. uses exponential moving avergages as RMSProp in divisor of lr
2. Uses exponential average of current and previous gradients in multiplier of lr

No comments:

Post a Comment

How to check local and global angular versions

 Use the command ng version (or ng v ) to find the version of Angular CLI in the current folder. Run it outside of the Angular project, to f...