‹ projects

cluster-rnn

a distributed Torch7 RNN cluster over MPI
Log | Files | Refs | README

commit 7df3a17094960e5dc7c6c0accd8dcbee9e396905
parent 9fea467f01172e577c86e786b297546d6d71bca6
Author: umhau <umhau@users.noreply.github.com>
Date:   Wed, 15 Feb 2017 00:59:20 -0500

shorten communication period

Diffstat:
Mmlaunch.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mlaunch.lua b/mlaunch.lua @@ -23,7 +23,7 @@ local torchfile = 'train.lua' -- name of torch file to run with MPI local iterations = 10 -- i.e., epochs. don't need that many for testing. -- advanced parameters -local communicationPeriod = 100 +local communicationPeriod = 1 local movingRateAlpha = 0.9/6 local learningRate = 1e-2 local momentum = 0.99