瀏覽代碼

Fix LBPCriterion #316

nagadomi 5 年之前
父節點
當前提交
715b6f0d28
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      lib/LBPCriterion.lua

+ 2 - 2
lib/LBPCriterion.lua

@@ -12,8 +12,8 @@ local function create_filters(ch, n, k, layers)
       if i == 1 then
 	 -- channel identity
 	 for j = 1, ch do
-	    filter.weight[i]:fill(0)
-	    filter.weight[i][i][math.floor(k/2)+1][math.floor(k/2)+1] = 1
+	    filter.weight[j]:fill(0)
+	    filter.weight[j][j][math.floor(k/2)+1][math.floor(k/2)+1] = 1
 	 end
       end
       model:add(filter)