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 @@ -427,7 +427,7 @@ def _do_dummy_prediction(self, datamanager: XYDataManager, num_run: int) -> int:
self._logger.error(
"Dummy prediction failed with run state %s. "
"The error suggests that the provided memory limits were too tight. Please "
"increase the 'ml_memory_limit' and try again. If this does not solve your "
"increase the 'memory_limit' and try again. If this does not solve your "
"problem, please open an issue and paste the additional output. "
"Additional output: %s.",
str(status), str(additional_info),
Expand All @@ -436,7 +436,7 @@ def _do_dummy_prediction(self, datamanager: XYDataManager, num_run: int) -> int:
raise ValueError(
"Dummy prediction failed with run state %s. "
"The error suggests that the provided memory limits were too tight. Please "
"increase the 'ml_memory_limit' and try again. If this does not solve your "
"increase the 'memory_limit' and try again. If this does not solve your "
"problem, please open an issue and paste the additional output. "
"Additional output: %s." %
(str(status), str(additional_info)),
Expand Down