aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeterminant <ted.sybil@gmail.com>2015-06-09 17:20:18 +0800
committerDeterminant <ted.sybil@gmail.com>2015-06-09 17:20:18 +0800
commit8a8dcb6c6bcdcd96984d8a9ecf9032287beeb76d (patch)
tree785395e2e23b755a13ae8efd4dfb73d81e1075b2
parent61a06cad66600e30254b9e16292ceccc963907f8 (diff)
fix #22
-rw-r--r--layer/softmax_ce.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/layer/softmax_ce.lua b/layer/softmax_ce.lua
index 4147f0c..4ea7421 100644
--- a/layer/softmax_ce.lua
+++ b/layer/softmax_ce.lua
@@ -13,7 +13,7 @@ function SoftmaxCELayer:__init(id, global_conf, layer_conf)
end
function SoftmaxCELayer:init()
- if self.dim_in[1] ~= self.dim_in[1] then
+ if self.dim_in[1] ~= self.dim_in[2] then
nerv.error("mismatching dimensions of previous network output and labels")
end
self.total_ce = 0.0