commit 88ce366d817ccea9cd6c402bce647599ad948a5a parent dab647ef52b15169adf94276279c0bd9dff1481a Author: umhau <umhau@users.noreply.github.com> Date: Wed, 15 Feb 2017 00:40:40 -0500 fix learning rate Diffstat:
| M | mlaunch.lua | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlaunch.lua b/mlaunch.lua @@ -66,7 +66,7 @@ mpiOptions.name = 'eamsgd' -- using most efficient optimizer --mpiOptions.lr = 1e-1 mpiOptions.communicationPeriod = 100 mpiOptions.movingRateAlpha = 0.9/6 -- this is \beta/p when p=6 -mpiOptions.learningRate = 1e-1 --1e-2 -- order of magnitude from the other - what's the difference? +mpiOptions.learningRate = 1e-2 -- order of magnitude from the other - what's the difference? mpiOptions.momentum = 0.99 mpiOptions.maxepoch = iterations