Dictionary of Applied Machine Learning
Updated on 2026-09-04
Typeset PDF version — the authoritative form of this entry
A feature importance score quantifies, for each feature, how much it contributes to the predictions of a learned hypothesis or to their quality. The permutation importance of a feature is the increase of the average loss on a dataset when the values of that feature are randomly permuted across the data points. A decision tree additionally offers an internal score by summing the improvement of its splitting criterion over the splits that use the feature, and averaged SHapley Additive exPlanations (SHAP) contributions yield another global score. Importance scores are properties of the learned hypothesis and the scoring dataset: correlated features share their credit, and an implausibly large importance is a symptom of data leakage.
A random forest serves as a classifier that predicts whether a day will be wet from a weather station's morning measurements. Whether its predictions deserve trust depends on which of the measurements they rest on — and on whether a column that should carry no information receives a large share of the credit.
A feature importance score quantifies, for each feature, how
much that feature contributes to the predictions of a
learned hypothesis $\learnthypothesis$, or to their quality.
The permutation importance of the $\featureidx$-th feature
is the increase of the average loss on a dataset when
the values of that feature are randomly permuted across the
data points, which breaks their association with the
label while leaving the feature's marginal
distribution intact (Breiman, 2001;
Fisher et al., 2019). A feature whose permutation
leaves the average loss unchanged played no measurable role
for $\learnthypothesis$ on that dataset
(Fig. 1). Permutation importance
treats $\learnthypothesis$ as a black box; a decision tree
additionally offers an internal score, obtained by summing the
improvement of its splitting criterion over all splits that use
the feature (Hastie et al., 2009).
SHapley Additive exPlanations (SHAP) assigns each feature a contribution to one single
prediction (Lundberg and Lee, 2017); averaging the magnitudes
of these contributions over a dataset yields another global
importance score.
Synonyms: variable importance.
See also: feature, random forest, decision tree, SHapley Additive exPlanations, explainability, data leakage, loss.
@misc{dictml_featureimportance,
author = {Jung, Alexander and Olioumtsevits, Konstantina and Schnoor, Ekkehard},
title = {feature importance},
howpublished = {Dictionary of Applied Machine Learning (course edition)},
year = {2026},
doi = {10.5281/zenodo.21569296},
note = {ISBN 978-952-64-3013-3, CC BY 4.0, retrieved 2026-09-11},
url = {https://dictionaryofml.org/terms/featureimportance.html}
}