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:
authorClement Farabet <clement.farabet@gmail.com>2012-09-28 21:52:18 +0400
committerClement Farabet <clement.farabet@gmail.com>2012-09-28 21:52:18 +0400
commitc12e430a890092c83ed950683704b68831a64e6e (patch)
tree3b289ce0aedbec8a5ba657f8fc682c1a6b23aca5 /asgd.lua
parentf16142686048d6e2b17a4ccac192753135d3072f (diff)
Updated info / help.
Diffstat (limited to 'asgd.lua')
-rw-r--r--asgd.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/asgd.lua b/asgd.lua
index 05ab953..cf1cd32 100644
--- a/asgd.lua
+++ b/asgd.lua
@@ -26,6 +26,8 @@
-- f(x) : the function, evaluated before the update
-- ax : the averaged x vector
--
+-- (Clement Farabet, 2012)
+--
function optim.asgd(opfunc, x, state)
-- (0) get/update state
local state = state or {}