-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ConfigSpace Technology Integration for Enhanced GAMA Configuration and Management π₯ #210
base: master
Are you sure you want to change the base?
Changes from all commits
3333b7a
abf174b
f1bb413
ee3f6e7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,8 @@ | ||||||||||||||||||||||||||||||
import pandas as pd | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
from .gama import Gama | ||||||||||||||||||||||||||||||
from gama.configuration.regression import reg_config | ||||||||||||||||||||||||||||||
from gama.configuration.regression import config_space as reg_config | ||||||||||||||||||||||||||||||
import ConfigSpace as cs | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
class GamaRegressor(Gama): | ||||||||||||||||||||||||||||||
|
@@ -16,8 +17,64 @@ def __init__( | |||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if not search_space: | ||||||||||||||||||||||||||||||
search_space = reg_config | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
search_space = self._search_space_check(search_space) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
super().__init__(*args, search_space=search_space, scoring=scoring, **kwargs) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def _search_space_check( | ||||||||||||||||||||||||||||||
self, search_space: cs.ConfigurationSpace | ||||||||||||||||||||||||||||||
) -> cs.ConfigurationSpace: | ||||||||||||||||||||||||||||||
"""Check if the search space is valid for regression.""" | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
# Check if the search space contains a regressor hyperparameter. | ||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||
"estimators" not in search_space.meta | ||||||||||||||||||||||||||||||
or ( | ||||||||||||||||||||||||||||||
search_space.meta["estimators"] | ||||||||||||||||||||||||||||||
not in search_space.get_hyperparameters_dict() | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
or not isinstance( | ||||||||||||||||||||||||||||||
search_space.get_hyperparameter(search_space.meta["estimators"]), | ||||||||||||||||||||||||||||||
cs.CategoricalHyperparameter, | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||
Comment on lines
+31
to
+41
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
(the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Apparently there was a large refactor to make |
||||||||||||||||||||||||||||||
raise ValueError( | ||||||||||||||||||||||||||||||
"The search space must include a hyperparameter for the regressors " | ||||||||||||||||||||||||||||||
"that is a CategoricalHyperparameter with choices for all desired " | ||||||||||||||||||||||||||||||
"regressors. Please double-check the spelling of the name, and review " | ||||||||||||||||||||||||||||||
"the `meta` object in the search space configuration located at " | ||||||||||||||||||||||||||||||
"`configurations/regression.py`. The `meta` object should contain " | ||||||||||||||||||||||||||||||
"a key `estimators` with a value that is the name of the hyperparameter" | ||||||||||||||||||||||||||||||
" that contains the regressor choices." | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
# Check if the search space contains a preprocessor hyperparameter | ||||||||||||||||||||||||||||||
# if it is specified in the meta. | ||||||||||||||||||||||||||||||
if ( | ||||||||||||||||||||||||||||||
"preprocessors" in search_space.meta | ||||||||||||||||||||||||||||||
and ( | ||||||||||||||||||||||||||||||
search_space.meta["preprocessors"] | ||||||||||||||||||||||||||||||
not in search_space.get_hyperparameters_dict() | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
or "preprocessors" in search_space.meta | ||||||||||||||||||||||||||||||
and not isinstance( | ||||||||||||||||||||||||||||||
search_space.get_hyperparameter(search_space.meta["preprocessors"]), | ||||||||||||||||||||||||||||||
cs.CategoricalHyperparameter, | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
): | ||||||||||||||||||||||||||||||
raise ValueError( | ||||||||||||||||||||||||||||||
"The search space must include a hyperparameter for the preprocessors " | ||||||||||||||||||||||||||||||
"that is a CategoricalHyperparameter with choices for all desired " | ||||||||||||||||||||||||||||||
"preprocessors. Please double-check the spelling of the name, and " | ||||||||||||||||||||||||||||||
"review the `meta` object in the search space configuration located at " | ||||||||||||||||||||||||||||||
"`configurations/regression.py`. The `meta` object should contain " | ||||||||||||||||||||||||||||||
"a key `preprocessors` with a value that is the name of the " | ||||||||||||||||||||||||||||||
"hyperparameter that contains the preprocessor choices. " | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
return search_space | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
def _predict(self, x: pd.DataFrame): | ||||||||||||||||||||||||||||||
"""Predict the target for input X. | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this necessary? It is already in
gama.py
so I am not sure why it would need to be added.