浏览代码

Merge branch 'master' of github.com:nagadomi/waifu2x

nagadomi 5 年之前
父节点
当前提交
da44c59fb0
共有 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)