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

github.com/torch/nn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tulloch <andrew@tullo.ch>2014-11-21 10:38:45 +0300
committerAndrew Tulloch <andrew@tullo.ch>2014-11-21 10:39:22 +0300
commit6916775db4731b5c40656085471448be476a321d (patch)
treeecbe7b560e213c0b0fc4f1b7911f3a3057151e0d /SoftMax.lua
parentb7c39f91f0e47309e16993a9b63a23040786d495 (diff)
Fix various unused variables in nn
Diffstat (limited to 'SoftMax.lua')
-rw-r--r--SoftMax.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/SoftMax.lua b/SoftMax.lua
index 609b353..22f0eda 100644
--- a/SoftMax.lua
+++ b/SoftMax.lua
@@ -1,4 +1,4 @@
-local SoftMax, parent = torch.class('nn.SoftMax', 'nn.Module')
+local SoftMax, _ = torch.class('nn.SoftMax', 'nn.Module')
function SoftMax:updateOutput(input)
return input.nn.SoftMax_updateOutput(self, input)