There are many other popular approaches to evaluating feature importance. We list some of them here:
- treeinterpreter—The idea is to use the underlying trees in Random Forest to explain how each feature contributes to the end result. This is an observation-level metric— the explanations are given for the selected rows, in the previous case, that would correspond to a specific customer of the bank.
- Local Interpretable Model-agnostic Explanations (LIME)—Another observation-level technique, used for explaining the predictions of any model in an interpretable and faithful manner. To obtain the explanations, LIME locally approximates the selected model with an interpretable one (such as linear models with regularization or decision ...