Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ec1669 commit 4a043a8Copy full SHA for 4a043a8
1 file changed
keras_model.cc
@@ -293,9 +293,12 @@ DataChunk* LayerConv2D::compute_output(DataChunk* dc) {
293
for(unsigned int x = 0; x < tmp_w.size(); ++x) {
294
for(unsigned int y = 0; y < tmp_w[0].size(); ++y) {
295
y_ret[j][x][y] += tmp_w[x][y];
296
+ cout << tmp_w[x][y] << " ";
297
}
298
+ cout << endl;
299
300
301
+
302
for(unsigned int x = 0; x < y_ret[0].size(); ++x) {
303
for(unsigned int y = 0; y < y_ret[0][0].size(); ++y) {
304
y_ret[j][x][y] += m_bias[j];
0 commit comments