-
Notifications
You must be signed in to change notification settings - Fork 82
Fix mrmr working with categoricals #1311
Merged
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,6 +82,14 @@ def mrmr( | |
redundancy_table = pd.DataFrame(np.inf, index=all_features, columns=all_features) | ||
top_k = min(top_k, len(all_features)) | ||
|
||
# can't compute correlation of categorical column with the others | ||
cat_cols = regressors.dtypes[regressors.dtypes == "category"].index | ||
for cat_col in cat_cols: | ||
try: | ||
regressors[cat_col] = regressors[cat_col].astype(float) | ||
except ValueError: | ||
raise ValueError(f"{cat_col} column cannot be cast to float type! Please, use encoders.") | ||
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. We should test this error. |
||
|
||
for i in range(top_k): | ||
score_numerator = relevance.loc[not_selected_features] | ||
score_denominator = pd.Series(1, index=not_selected_features) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,12 @@ def df_with_regressors() -> Dict[str, pd.DataFrame]: | |
regressor = df_regressors_useless[df_regressors_useless["segment"] == segment]["target"].values | ||
df_exog[f"regressor_useless_{i}"] = regressor | ||
|
||
# useless categorical regressor | ||
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. regressor -> regressors? |
||
num_cat_useless = 3 | ||
for i in range(num_cat_useless): | ||
df_exog[f"categorical_regressor_useless_{i}"] = i | ||
df_exog[f"categorical_regressor_useless_{i}"] = df_exog[f"categorical_regressor_useless_{i}"].astype("category") | ||
|
||
# useful regressors: the same as target but with little noise | ||
df_regressors_useful = df.copy() | ||
sampler = RandomState(seed=2).normal | ||
|
@@ -174,3 +180,10 @@ def test_fast_redundancy_deprecation_warning(df_with_regressors): | |
relevance_table = ModelRelevanceTable()(df=df, df_exog=regressors, model=RandomForestRegressor()) | ||
with pytest.warns(DeprecationWarning, match="Option `fast_redundancy=False` was added for backward compatibility"): | ||
mrmr(relevance_table=relevance_table, regressors=regressors, top_k=2, fast_redundancy=False) | ||
|
||
|
||
@pytest.mark.parametrize("fast_redundancy", [True, False]) | ||
def test_mrmr_with_categorical_regressor(df_with_regressors, fast_redundancy): | ||
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.
|
||
df, regressors = df_with_regressors["df"], df_with_regressors["regressors"] | ||
relevance_table = ModelRelevanceTable()(df=df, df_exog=regressors, model=RandomForestRegressor()) | ||
mrmr(relevance_table=relevance_table, regressors=regressors, top_k=len(regressors), fast_redundancy=fast_redundancy) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Won't it be easier to cast all regressors to float?