Exponential Moving Average/Polyak Averaging in MXNet #13585
Replies: 4 comments
-
|
@mxnet-label-bot add [Feature Request, Question, Optimizer] |
Beta Was this translation helpful? Give feedback.
-
|
I have an implementation of Polyak averaging. Take a look here to find out if it is the same version they used in WaveNet: https://github.com/dmlc/gluon-nlp/blob/bidaf/scripts/question_answering/utils.py#L277 |
Beta Was this translation helpful? Give feedback.
-
|
I will check. Thanks! |
Beta Was this translation helpful? Give feedback.
-
|
@safrooze also implemented Polyak Averaging a la wavenet and may be able to help. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
How can I implement Polyak averaging of as part of my network, in the wavenet model - https://arxiv.org/abs/1711.10433
I am not sure it can be implemented as an optimizer, it is more like a post-processing step on the weights after the optimizer update.
Tensorflow has it here - https://www.tensorflow.org/api_docs/python/tf/train/ExponentialMovingAverage
Beta Was this translation helpful? Give feedback.
All reactions