This repository has been archived by the owner on May 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #319 from Aarhus-Psychiatry-Research/bokajgd/issue312
feat: adding mutual information based feature selection
- Loading branch information
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
src/psycopt2d/config/preprocessing/default_preprocessing.yaml
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
convert_to_boolean: false | ||
convert_datetimes_to_ordinal: false | ||
imputation_method: "most_frequent" # (str): Options include 2most_frequent" | ||
imputation_method: "most_frequent" # (str): Options include "most_frequent" | ||
transform: null # (str|null): Transformation applied to all predictors after imputation. Options include "z-score-normalization" | ||
feature_selection: | ||
name: null | ||
feature_selection: | ||
name: null # (str) Options include "f_classif", "chi2" and "mutual_info_classif". Default to use is "mutual_info_classif". | ||
params: | ||
percentile: 10 # (int): Percent of features to keep. Defaults to 10. |
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