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:
authorkoray kavukcuoglu <koray@kavukcuoglu.org>2013-07-20 00:33:56 +0400
committerkoray kavukcuoglu <koray@kavukcuoglu.org>2013-07-20 00:33:56 +0400
commit9b6775c480288990df424c0307e443791fc16182 (patch)
treea97fe21c3e60927d8832cf54a21c576afdb897c0
parent5430ef9e48d9afad71743a03772afd968a4fc1b1 (diff)
Fix the doc for rprop (from @jucor)1.0.3-1
-rw-r--r--rprop.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/rprop.lua b/rprop.lua
index ac12909..964c9e4 100644
--- a/rprop.lua
+++ b/rprop.lua
@@ -7,11 +7,12 @@
-- x : the initial point
-- state : a table describing the state of the optimizer; after each
-- call the state is modified
--- state.learningRate : learning rate
--- state.learningRateDecay : learning rate decay
--- state.weightDecay : weight decay
--- state.momentum : momentum
--- state.learningRates : vector of individual learning rates
+-- state.stepsize = initial step size, common to all components
+-- state.etaplus = multiplicative increase factor, > 1 (default 1.2)
+-- state.etaminus = multiplicative decrease factor, < 1 (default 0.5)
+-- state.stepsizemax = maximum stepsize allowed (default 50)
+-- state.stepsizemin = minimum stepsize allowed (default 1e-6)
+-- state.niter = number of iterations (default 1)
--
-- RETURN:
-- x : the new x vector