You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2018/06/29 00:20:39 UTC

[GitHub] szha closed pull request #11392: Document AdaGrad eps as initial history accumulator value

szha closed pull request #11392: Document AdaGrad eps as initial history accumulator value
URL: https://github.com/apache/incubator-mxnet/pull/11392
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/python/mxnet/optimizer.py b/python/mxnet/optimizer.py
index 267a402f246..e73a45f74b0 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):


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services