Skip to content
Open
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
6 changes: 1 addition & 5 deletions autosklearn/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -1151,11 +1151,7 @@ def additional_info_has_key(rv, key):
{
"balancing_strategy": run_config.get("balancing:strategy", None),
"type": run_config[f"{model_type}:__choice__"],
"data_preprocessors": [
value
for key, value in run_config.items()
if "data_preprocessing" in key and "__choice__" in key
],
"data_preprocessors": [run_config.get("data_preprocessor:__choice__")],
"feature_preprocessors": [
value
for key, value in run_config.items()
Expand Down