Skip to content

Commit 9819098

Browse files
ahn1340mfeurer
authored andcommitted
Fix minor printing error in sprint_statistics. (#478)
1 parent c5ca781 commit 9819098

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autosklearn/automl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -771,10 +771,10 @@ def sprint_statistics(self):
771771
num_crash = sum([s == 'Crash' for s in cv_results['status']])
772772
sio.write(' Number of crashed target algorithm runs: %d\n' % num_crash)
773773
num_timeout = sum([s == 'Timeout' for s in cv_results['status']])
774-
sio.write(' Number of target algorithms that exceeded the memory '
774+
sio.write(' Number of target algorithms that exceeded the time '
775775
'limit: %d\n' % num_timeout)
776776
num_memout = sum([s == 'Memout' for s in cv_results['status']])
777-
sio.write(' Number of target algorithms that exceeded the time '
777+
sio.write(' Number of target algorithms that exceeded the memory '
778778
'limit: %d\n' % num_memout)
779779
return sio.getvalue()
780780

0 commit comments

Comments
 (0)