From fef13dd457cc7e90c376f6e1b366998251fdd3e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20F=C3=BClling?= Date: Mon, 22 Aug 2016 09:54:36 +0200 Subject: [PATCH] fix comment --- train.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/train.lua b/train.lua index 8bc94af..e7ac20c 100644 --- a/train.lua +++ b/train.lua @@ -16,7 +16,7 @@ cmd:option('--minLR', 0.00001, 'minimum learning rate') cmd:option('--saturateEpoch', 20, 'epoch at which linear decayed LR will reach minLR') cmd:option('--maxEpoch', 50, 'maximum number of epochs to run') cmd:option('--batchSize', 10, 'mini-batch size') -cmd:option('--gpu', 0, 'Zero-indexed ID of the GPU to use; for CPU mode set --gpu = -1') +cmd:option('--gpu', 0, 'Zero-indexed ID of the GPU to use. Optional.') cmd:text() options = cmd:parse(arg)