Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
tosemml authored Sep 6, 2023
1 parent 92177d3 commit 64676fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def dump_nn_output(rnn_output: np.ndarray) -> None:
for b in range(max_b):
csv = ''
for t in range(max_t):
csv += ';'.join([str(rnn_output[t, b, c]) for c in range(max_c)]) + '\n'
csv += ';'.join([str(rnn_output[t, b, c]) for c in range(max_c)]) + ';\n'
fn = dump_dir + 'rnnOutput_' + str(b) + '.csv'
print('Write dump of NN to file: ' + fn)
with open(fn, 'w') as f:
Expand Down

0 comments on commit 64676fa

Please sign in to comment.