Skip to content

Commit

Permalink
Wrong gradient history for layer 1 weights
Browse files Browse the repository at this point in the history
  • Loading branch information
SCRN-VRC committed Oct 11, 2020
1 parent 8268572 commit 347d3d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SimpNet/Assets/SimpNet/Shaders/SimpNet.shader
Original file line number Diff line number Diff line change
Expand Up @@ -1240,8 +1240,10 @@ Shader "SimpNet/SimpNet"
for (uint y = 0; y < 63; y++) {
uint lx = x + i;
uint ly = y + j;
// dwL1 += getDiL1(_Buffer, uint3(x, y, l)) *
// testImage(lx, ly, k);
dwL1 += getDiL1(_Buffer, uint3(x, y, l)) *
testImage(lx, ly, k);
(_CamIn.Load(int3(ly, 64 - lx, 0))[k]);
}
}

Expand Down

0 comments on commit 347d3d3

Please sign in to comment.