Skip to main content

All Relevant Feature Selection and Maximal Relevant minimal redundancy FS

Project description

drawing

buy me caffeine

PyPI version Downloads Documentation Status Code Style

ARFS readthedocs

All relevant feature selection

All relevant feature selection means trying to find all features carrying information usable for prediction, rather than finding a possibly compact subset of features on which some particular model has a minimal error. This might include redundant predictors. All relevant feature selection is model agnostic in the sense that it doesn't optimize a scoring function for a specific model but rather tries to select all the predictors which are related to the response.

This package implements 3 different methods (Leshy is an evolution of Boruta, BoostAGroota is an evolution of BoostARoota and GrootCV is a new one). They are sklearn compatible. See hereunder for details about those methods. You can use any sklearn compatible estimator with Leshy and BoostAGroota but I recommend lightGBM. It's fast, accurate and has SHAP values builtin. It also provides a module for performing preprocessing and perform basic feature selection (autobinning, remove columns with too many missing values, zero variance, high-cardinality, highly correlated, etc.). Examples and detailled methods hereunder.

Moreover, as an alternative to the all relevant problem, the ARFS package provides a MRmr feature selection which, theoretically, returns a subset of the predictors selected by an arfs method. ARFS also provides a LASSO feature selection which works especially well for (G)LMs and GAMs. You can combine Lasso with the TreeDiscretizer for introducing non-linearities into linear models and perform feature selection.

Please note that one limitation of the lasso is that it treats the levels of a categorical predictor individually. However, this issue can be addressed by utilizing the TreeDiscretizer, which automatically bins numerical variables and groups the levels of categorical variables.

Installation

$ pip install arfs

REM: If you're interested in using the fastshap option, you'll need to install fasttreeshap first. For a smooth installation process, I suggest using conda install -c conda-forge fasttreeshap since the c++ source code requires compilation. Using pip may involve additional dependencies, such as requiring VS for compiling the c++ code.

Example

Working examples for:

For imbalanced classification:

  • GrootCV will automatically detect imbalanced data and set the lightGBM 'is_unbalance' = True
  • For Leshy and BoostAGroota, you can pass the estimator with the relevant parameter (e.g. class_weight = 'balanced')

Boruta

The Boruta algorithm tries to capture all the important features you might have in your dataset with respect to an outcome variable. The procedure is the following:

  • Create duplicate copies of all independent variables. When the number of independent variables in the original data is less than 5, create at least 5 copies using existing variables.
  • Shuffle the values of added duplicate copies to remove their correlations with the target variable. It is called shadow features or permuted copies.
  • Combine the original ones with shuffled copies
  • Run a random forest classifier on the combined dataset and performs a variable importance measure (the default is Mean Decrease Accuracy) to evaluate the importance of each variable where higher means more important.
  • Then Z score is computed. It means mean of accuracy loss divided by the standard deviation of accuracy loss.
  • Find the maximum Z score among shadow attributes (MZSA)
  • Tag the variables as 'unimportant' when they have importance significantly lower than MZSA. Then we permanently remove them from the process.
  • Tag the variables as 'important' when they have importance significantly higher than MZSA.
  • Repeat the above steps for a predefined number of iterations (random forest runs), or until all attributes are either tagged 'unimportant' or 'important', whichever comes first.

At every iteration, the algorithm compares the Z-scores of the shuffled copies of the features and the original features to see if the latter performed better than the former. If it does, the algorithm will mark the feature as important. In essence, the algorithm is trying to validate the importance of the feature by comparing with randomly shuffled copies, which increases the robustness. This is done by simply comparing the number of times a feature did better with the shadow features using a binomial distribution. Since the whole process is done on the same train-test split, the variance of the variable importance comes only from the different re-fit of the model over the different iterations.

drawing

BoostARoota

BoostARoota follows closely the Boruta method but modifies a few things:

  • One-Hot-Encode the feature set
  • Double width of the data set, making a copy of all features in the original dataset
  • Randomly shuffle the new features created in (2). These duplicated and shuffled features are referred to as "shadow features"
  • Run XGBoost classifier on the entire data set ten times. Running it ten times allows for random noise to be smoothed, resulting in more robust estimates of importance. The number of repeats is a parameter than can be changed.
  • Obtain importance values for each feature. This is a simple importance metric that sums up how many times the particular feature was split on in the XGBoost algorithm.
  • Compute "cutoff": the average feature importance value for all shadow features and divide by four. Shadow importance values are divided by four (parameter can be changed) to make it more difficult for the variables to be removed. With values lower than this, features are removed at too high of a rate.
  • Remove features with average importance across the ten iterations that is less than the cutoff specified in (6)
  • Go back to (2) until the number of features removed is less than ten per cent of the total.
  • Method returns the features remaining once completed.

In the spirit, the same heuristic than Boruta but using Boosting (originally Boruta was supporting only random forest). The validation of the importance is done by comparing to the maximum of the median var. imp of the shadow predictors (in Boruta, a statistical test is performed using the Z-score). Since the whole process is done on the same train-test split, the variance of the variable importance comes only from the different re-fit of the model over the different iterations.

drawing

Modifications to Boruta and BoostARoota

I forked both Boruta and BoostARoota and made the following changes (under PR):

Boruta --> Leshy:

  • The categorical features (they are detected, encoded. The tree-based models are working better with integer encoding rather than with OHE, which leads to deep and unstable trees). If Catboost is used, then the cat.pred (if any) are set up
  • Using lightGBM as the default speeds up by an order of magnitude the running time
  • Work with Catboost, sklearn API
  • Allow using sample_weight, for applications like Poisson regression or any requiring weights
  • Supports 3 different feature importances: native, SHAP and permutation. Native being the least consistent(because of the imp. biased towards numerical and large cardinality categorical) but the fastest of the 3. Indeed, the impurity var.imp. are biased en sensitive to large cardinality (see scikit demo)

BoostARoota --> BoostAGroota:

  • Replace XGBoost with LightGBM, you can still use tree-based scikitlearn models
  • Replace native var.imp by SHAP var.imp. Indeed, the impurity var.imp. are biased en sensitive to large cardinality (see scikit demo). Moreover, the native var. imp are computed on the train set, here the data are split (internally) in train and test, var. imp computed on the test set.
  • Handling categorical predictors. Cat. predictors should NOT be one-hot encoded, it leads to deep unstable trees. Instead, it's better to use the native method of lightGBM or CatBoost. A preprocessing step is needed to encode (ligthGBM and CatBoost use integer encoding and reference to categorical columns. The splitting strategies are different then, see official doc).
  • Work with sample_weight, for Poisson or any application requiring a weighting.

GrootCV, a new method

New: GrootCV:

  • Cross-validated feature importance to smooth out the noise, based on lightGBM only (which is, most of the time, the fastest and more accurate Boosting).
  • the feature importance is derived using SHAP importance
  • Taking the max of the median of the shadow var. imp over folds otherwise not enough conservative and it improves the convergence (needs less evaluation to find a threshold)
  • Not based on a given percentage of cols needed to be deleted
  • Plot method for var. imp
drawing

References

Theory

Applications

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

arfs-3.0.0.tar.gz (777.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

arfs-3.0.0-py3-none-any.whl (776.9 kB view details)

Uploaded Python 3

File details

Details for the file arfs-3.0.0.tar.gz.

File metadata

  • Download URL: arfs-3.0.0.tar.gz
  • Upload date:
  • Size: 777.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for arfs-3.0.0.tar.gz
Algorithm Hash digest
SHA256 58a70a063d2ce1596d4f0ce2c45cbdcad0e69767507cc880de5fbc23ec5b78c0
MD5 aad143fd4a478340507cfd5a056aafcb
BLAKE2b-256 3cb50d7fdd4292fa8f64a7d9363d1cce9c5cb4545f7e3163cce0975b83138047

See more details on using hashes here.

File details

Details for the file arfs-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: arfs-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 776.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.0

File hashes

Hashes for arfs-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5a748fb81a291ee30b1d6ee3ce078cd3d0d331d0acfa6f9f1ef00d5b366f341d
MD5 ca7c180fa688323ffa27249cc7c71f97
BLAKE2b-256 a3b4b20ca82bd0bed72b4ebb581d1bf288ee42a10dc48dd091429639d78af9aa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page