Преглед изворни кода

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)