Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4a043a8

Browse files
author
pplonski
committed
debugging
1 parent 9ec1669 commit 4a043a8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

keras_model.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,9 +293,12 @@ DataChunk* LayerConv2D::compute_output(DataChunk* dc) {
293293
for(unsigned int x = 0; x < tmp_w.size(); ++x) {
294294
for(unsigned int y = 0; y < tmp_w[0].size(); ++y) {
295295
y_ret[j][x][y] += tmp_w[x][y];
296+
cout << tmp_w[x][y] << " ";
296297
}
298+
cout << endl;
297299
}
298300
}
301+
299302
for(unsigned int x = 0; x < y_ret[0].size(); ++x) {
300303
for(unsigned int y = 0; y < y_ret[0][0].size(); ++y) {
301304
y_ret[j][x][y] += m_bias[j];

0 commit comments

Comments
 (0)