commit dab647ef52b15169adf94276279c0bd9dff1481a
parent b51fc88f00a08f3fcc03c2a36e6208538b24fce3
Author: umhau <umhau@users.noreply.github.com>
Date: Wed, 15 Feb 2017 00:21:31 -0500
change default optimizer
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/train.lua b/train.lua
@@ -69,7 +69,7 @@ cmd:option('-opencl',0,'use OpenCL (instead of CUDA)')
cmd:option('-word_level',0,'whether to operate on the word level, instead of character level (0: use chars, 1: use words)')
cmd:option('-threshold',0,'minimum number of occurences a token must have to be included (ignored if -word_level is 0)')
cmd:option('-glove',0,'whether or not to use GloVe embeddings')
-cmd:option('-optimizer','rmsprop','which optimizer to use: adam or rmsprop')
+cmd:option('-optimizer','eamsgd','which optimizer to use: adam or rmsprop')
cmd:text()