You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using SMAC to optimize the runtime of an algorithm, the error report in runhistory.json does not report the raised exception, but an SMAC-internal error in TargetFunctionRunner, namely that the crash_cost attribute does not exist as
Traceback (most recent call last):
File "/home/ubuntu/miniconda3/envs/learning_History/lib/python3.10/site-packages/smac/runner/abstract_runner.py", line 110, in run_wrapper
status, cost, runtime, additional_info = self.run(
File "/home/ubuntu/miniconda3/envs/learning_History/lib/python3.10/site-packages/smac/runner/target_function_runner.py", line 238, in run
cost = self.crash_cost
AttributeError: 'TargetFunctionRunner' object has no attribute 'crash_cost'
Versions
2.2.0
The text was updated successfully, but these errors were encountered:
Description
When using SMAC to optimize the runtime of an algorithm, the error report in
runhistory.json
does not report the raised exception, but an SMAC-internal error inTargetFunctionRunner
, namely that thecrash_cost
attribute does not exist asSMAC3/smac/runner/target_function_runner.py
Line 238 in 9d19475
misses an underscore in comparison to
SMAC3/smac/runner/abstract_runner.py
Line 64 in 9d19475
Actual Results
Taken from
runhistory.json
:Versions
2.2.0
The text was updated successfully, but these errors were encountered: