This is an automated email from the ASF dual-hosted git repository.
zhasheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/master by this push:
new 2594fca Document AdaGrad eps as initial history accumulator value
(#11392)
2594fca is described below
commit 2594fcabdd63aaf26e112ad337dcb711c7783bc2
Author: Leonard Lausen <[email protected]>
AuthorDate: Fri Jun 29 00:20:37 2018 +0000
Document AdaGrad eps as initial history accumulator value (#11392)
---
python/mxnet/optimizer.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/mxnet/optimizer.py b/python/mxnet/optimizer.py
index 267a402..e73a45f 100644
--- a/python/mxnet/optimizer.py
+++ b/python/mxnet/optimizer.py
@@ -1090,7 +1090,7 @@ class AdaGrad(Optimizer):
Parameters
----------
eps: float, optional
- Small value to avoid division by 0.
+ Initial value of the history accumulator. Avoids division by 0.
"""
def __init__(self, eps=1e-7, **kwargs):