Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions autosklearn/automl.py
Original file line number Diff line number Diff line change
Expand Up @@ -771,10 +771,10 @@ def sprint_statistics(self):
num_crash = sum([s == 'Crash' for s in cv_results['status']])
sio.write(' Number of crashed target algorithm runs: %d\n' % num_crash)
num_timeout = sum([s == 'Timeout' for s in cv_results['status']])
sio.write(' Number of target algorithms that exceeded the memory '
sio.write(' Number of target algorithms that exceeded the time '
'limit: %d\n' % num_timeout)
num_memout = sum([s == 'Memout' for s in cv_results['status']])
sio.write(' Number of target algorithms that exceeded the time '
sio.write(' Number of target algorithms that exceeded the memory '
'limit: %d\n' % num_memout)
return sio.getvalue()

Expand Down