Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/nngraph.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gmodule.lua')
-rw-r--r--gmodule.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmodule.lua b/gmodule.lua
index 3501f0c..2a367d4 100644
--- a/gmodule.lua
+++ b/gmodule.lua
@@ -274,7 +274,7 @@ function gModule:runForwardFunction(func,input)
if nInputs <= 1 then
input={input}
elseif type(input) ~= "table" then
- error(string.format("expecting %s inputs", nInputs))
+ error(string.format("expecting table of %s inputs", nInputs))
end
local function neteval(node)
local function propagate(node,x)