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:
Diffstat (limited to 'sgd.lua')
-rw-r--r--sgd.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/sgd.lua b/sgd.lua
index ea13c55..e21c696 100644
--- a/sgd.lua
+++ b/sgd.lua
@@ -70,7 +70,7 @@ function optim.sgd(opfunc, x, config, state)
-- (4) learning rate decay (annealing)
local clr = lr / (1 + nevals*lrd)
-
+
-- (5) parameter update with single or individual learning rates
if lrs then
if not state.deltaParameters then