Skip to content

Commit

Permalink
using smaller cnn for writing weight and input gradients (wip)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julio Jerez committed Oct 31, 2023
1 parent e053ae2 commit 71c2c76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions newton-4.00/sdk/dBrain/ndBrainLayerConvolutional.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ ndBrainLayerConvolutional::ndBrainLayerConvolutional(ndInt32 inputWidth, ndInt32
if (inputWidth == 12)
{
//Debug(inputWidth, m_inputHeight, inputDepth, kernelSize, numberOfKernels);
Debug(7, 7, 2, 3, 3);
//Debug(7, 7, 2, 3, 3);
Debug(4, 4, 2, 2, 3);
}
}

Expand Down Expand Up @@ -368,7 +369,7 @@ void ndBrainLayerConvolutional::Debug(ndInt32 width, ndInt32 height, ndInt32 cha
ndTrace(("\n"));
}
}
ndTrace((" b(%d)\n", filter));
//ndTrace((" b(%d)\n", filter));
ndTrace(("\n"));
}
}
Expand Down

0 comments on commit 71c2c76

Please sign in to comment.