Hire a web Developer and Designer to upgrade and boost your online presence with cutting edge Technologies

Monday, 20 May 2024

Feature Importance and Feature Selection With XGBoost in Python

 A benefit of using ensembles of decision tree methods like gradient boosting is that they can automatically provide estimates of feature importance from a trained predictive model.

In this post you will discover how you can estimate the importance of features for a predictive modeling problem using the XGBoost library in Python.

After reading this post you will know:

  • How feature importance is calculated using the gradient boosting algorithm.
  • How to plot feature importance in Python calculated by the XGBoost model.
  • How to use feature importance calculated by XGBoost to perform feature selection.

    Feature Importance in Gradient Boosting

    A benefit of using gradient boosting is that after the boosted trees are constructed, it is relatively straightforward to retrieve importance scores for each attribute.

    Generally, importance provides a score that indicates how useful or valuable each feature was in the construction of the boosted decision trees within the model. The more an attribute is used to make key decisions with decision trees, the higher its relative importance.

    This importance is calculated explicitly for each attribute in the dataset, allowing attributes to be ranked and compared to each other.

    Importance is calculated for a single decision tree by the amount that each attribute split point improves the performance measure, weighted by the number of observations the node is responsible for. The performance measure may be the purity (Gini index) used to select the split points or another more specific error function.

    The feature importances are then averaged across all of the the decision trees within the model.

    For more technical information on how feature importance is calculated in boosted decision trees, see Section 10.13.1 “Relative Importance of Predictor Variables” of the book The Elements of Statistical Learning: Data Mining, Inference, and Prediction, page 367.

    Also, see Matthew Drury answer to the StackOverflow question “Relative variable importance for Boosting” where he provides a very detailed and practical answer.

    Manually Plot Feature Importance

    A trained XGBoost model automatically calculates feature importance on your predictive modeling problem.

    These importance scores are available in the feature_importances_ member variable of the trained model. For example, they can be printed directly as follows:

    We can plot these scores on a bar chart directly to get a visual indication of the relative importance of each feature in the dataset. For example:

    We can demonstrate this by training an XGBoost model on the Pima Indians onset of diabetes dataset and creating a bar chart from the calculated feature importances.

    Download the dataset and place it in your current working directory.

    Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

    Running this example first outputs the importance scores.

    We also get a bar chart of the relative importances.

    Manual Bar Chart of XGBoost Feature Importance

    Manual Bar Chart of XGBoost Feature Importance

    A downside of this plot is that the features are ordered by their input index rather than their importance. We could sort the features before plotting.

    Thankfully, there is a built in plot function to help us.

    Using theBuilt-in XGBoost Feature Importance Plot

    The XGBoost library provides a built-in function to plot features ordered by their importance.

    The function is called plot_importance() and can be used as follows:

    For example, below is a complete code listing plotting the feature importance for the Pima Indians dataset using the built-in plot_importance() function.

    Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

    Running the example gives us a more useful bar chart.

    XGBoost Feature Importance Bar Chart

    XGBoost Feature Importance Bar Chart

    You can see that features are automatically named according to their index in the input array (X) from F0 to F7.

    Manually mapping these indices to names in the problem description, we can see that the plot shows F5 (body mass index) has the highest importance and F3 (skin fold thickness) has the lowest importance.

    Feature Selection with XGBoost Feature Importance Scores

    Feature importance scores can be used for feature selection in scikit-learn.

    This is done using the SelectFromModel class that takes a model and can transform a dataset into a subset with selected features.

    This class can take a pre-trained model, such as one trained on the entire training dataset. It can then use a threshold to decide which features to select. This threshold is used when you call the transform() method on the SelectFromModel instance to consistently select the same features on the training dataset and the test dataset.

    In the example below we first train and then evaluate an XGBoost model on the entire training dataset and test datasets respectively.

    Using the feature importances calculated from the training dataset, we then wrap the model in a SelectFromModel instance. We use this to select features on the training dataset, train a model from the selected subset of features, then evaluate the model on the testset, subject to the same feature selection scheme.

    For example:

    For interest, we can test multiple thresholds for selecting features by feature importance. Specifically, the feature importance of each input variable, essentially allowing us to test each subset of features by importance, starting with all features and ending with a subset with the most important feature.

    The complete code listing is provided below.

    Note, if you are using XGBoost 1.0.2 (and perhaps other versions), there is a bug in the XGBClassifier class that results in the error:

    This can be fixed by using a custom XGBClassifier class that returns None for the coef_ property.

    The complete example is listed below.

    Note: Your results may vary given the stochastic nature of the algorithm or evaluation procedure, or differences in numerical precision. Consider running the example a few times and compare the average outcome.

    Running this example prints the following output.

    We can see that the performance of the model generally decreases with the number of selected features.

    On this problem there is a trade-off of features to test set accuracy and we could decide to take a less complex model (fewer attributes such as n=4) and accept a modest decrease in estimated accuracy from 77.95% down to 76.38%.

    This is likely to be a wash on such a small dataset, but may be a more useful strategy on a larger dataset and using cross validation as the model evaluation scheme.

    Summary

    In this post you discovered how to access features and use importance in a trained XGBoost gradient boosting model.

    Specifically, you learned:

    • What feature importance is and generally how it is calculated in XGBoost.
    • How to access and plot feature importance scores from an XGBoost model.
    • How to use feature importance from an XGBoost model for feature selection.

    Do you have any questions about feature importance in XGBoost or about this post? Ask your questions in the comments and I will do my best to answer them.

No comments:

Post a Comment

Connect broadband

How to Develop a Character-Based Neural Language Model in Keras

  A   language model   predicts the next word in the sequence based on the specific words that have come before it in the sequence. It is al...