Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/optim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoumith Chintala <soumith@gmail.com>2015-10-09 08:01:23 +0300
committerSoumith Chintala <soumith@gmail.com>2015-10-09 08:01:23 +0300
commit854cded63743f1b0b4cf3e9bd311831cef13d1ac (patch)
treec4d6a6dba849c05d554114a51c13ac7121d7c24d
parenta6e878f76e32b7e5712f830772341e27bf938bf1 (diff)
parentc10aa5c5049f7e4cdff560d3fa08217b546f8358 (diff)
Merge pull request #79 from eulerreich/patch-1
typo
-rw-r--r--rmsprop.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/rmsprop.lua b/rmsprop.lua
index f0e6310..ecb33f1 100644
--- a/rmsprop.lua
+++ b/rmsprop.lua
@@ -8,7 +8,7 @@ ARGS:
- 'config` : a table with configuration parameters for the optimizer
- 'config.learningRate' : learning rate
- 'config.alpha' : smoothing constant
-- 'config.epsilon' : value with which to inistialise m
+- 'config.epsilon' : value with which to initialise m
- 'state' : a table describing the state of the optimizer;
after each call the state is modified
- 'state.m' : leaky sum of squares of parameter gradients,