Skip to content

Commit 93837e0

Browse files
committed
Fix printout in lstm.py.
1 parent 5a13d98 commit 93837e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/lstm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -605,8 +605,8 @@ def train_lstm(
605605
best_p = unzip(tparams)
606606
bad_counter = 0
607607

608-
print( ('Train ', train_err, 'Valid ', valid_err,
609-
'Test ', test_err) )
608+
print('Train ', train_err, 'Valid ', valid_err,
609+
'Test ', test_err)
610610

611611
if (len(history_errs) > patience and
612612
valid_err >= numpy.array(history_errs)[:-patience,

0 commit comments

Comments
 (0)