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:
authorArulkumar <arul.subramaniam@hotmail.com>2015-11-13 14:12:36 +0300
committerArulkumar <arul.subramaniam@hotmail.com>2015-11-13 14:12:36 +0300
commite2cf3f181169409367b06039aaf5cca1e6db5ecb (patch)
treeeba8fd08e90d4e1d61b1f5fa72409125bcd8d4d4
parentf53b8d04a80befb65a8ebb87b0334292c4838830 (diff)
documentation update for config.learningRates, state.evalCounter
-rw-r--r--sgd.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/sgd.lua b/sgd.lua
index 8ad59e4..ea13c55 100644
--- a/sgd.lua
+++ b/sgd.lua
@@ -13,9 +13,10 @@ ARGS:
- `config.momentum` : momentum
- `config.dampening` : dampening for momentum
- `config.nesterov` : enables Nesterov momentum
+- `config.learningRates` : vector of individual learning rates
- `state` : a table describing the state of the optimizer; after each
call the state is modified
-- `state.learningRates` : vector of individual learning rates
+- `state.evalCounter` : evaluation counter (optional: 0, by default)
RETURN:
- `x` : the new x vector