xplainfi provides feature importance methods for machine
learning models. It implements several approaches for measuring how much
each feature contributes to model performance, with a focus on
model-agnostic methods that work with any learner.
Feature importance methods in xplainfi address different
but related questions:
All methods share a common interface built on mlr3, making them easy to use with any task, learner, measure, and resampling strategy.
The general pattern is to call $compute() to calculate
importance (which always re-computes), then
$importance() to retrieve the aggregated results, with
intermediate results available in $scores() and, if the
chosen measure supports it, $obs_loss().
Let’s use the Friedman1 task to demonstrate feature importance methods with known ground truth:
task <- tgen("friedman1")$generate(n = 300)
learner <- lrn("regr.ranger", num.trees = 100)
measure <- msr("regr.mse")
resampling <- rsmp("cv", folds = 3)The task has 300 observations with 10 features. Features
important1 through important5 truly affect the
target, while unimportant1 through
unimportant5 are pure noise. We’ll use a random forest
learner with cross-validation for more stable estimates.
The target function is: \(y = 10 \cdot \operatorname{sin}(\pi x_1 x_2) + 20 (x_3 - 0.5)^2 + 10 x_4 + 5 x_5 + \epsilon\)
PFI is the most straightforward method: for each feature, we permute (shuffle) its values and measure how much model performance deteriorates. More important features cause larger performance drops when shuffled.
pfi <- PFI$new(
task = task,
learner = learner,
measure = measure,
resampling = resampling,
n_repeats = 10
)
pfi$compute()
pfi$importance()
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 5.41840091
#> 2: important2 8.70579352
#> 3: important3 1.29534710
#> 4: important4 12.84655347
#> 5: important5 2.05565706
#> 6: unimportant1 -0.01202821
#> 7: unimportant2 0.10653959
#> 8: unimportant3 0.02258234
#> 9: unimportant4 0.02254164
#> 10: unimportant5 0.05133535The importance column shows the performance difference
when each feature is permuted. Higher values indicate more important
features.
For more stable estimates, we can use multiple permutation iterations
per resampling fold with n_repeats, which is set to
30 by default for all methods. Note that in this case “more
is more”, and while there is no clear “good enough” value, setting
n_repeats to a small value like 1 will most definitely
yield unreliable results.
pfi_stable <- PFI$new(
task = task,
learner = learner,
measure = measure,
resampling = resampling,
n_repeats = 50
)
pfi_stable$compute()
pfi_stable$importance()
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 5.47317924
#> 2: important2 8.64439097
#> 3: important3 1.19306219
#> 4: important4 11.91448628
#> 5: important5 1.95013466
#> 6: unimportant1 -0.05039587
#> 7: unimportant2 0.04715875
#> 8: unimportant3 -0.01146867
#> 9: unimportant4 0.04373591
#> 10: unimportant5 -0.09969957To illustrate why this is important, we can take a look at the
variability of PFI scores for feature important2 within
each resampling iteration using individual importance scores via
$score() (see below):
pfi_stable$scores()[feature == "important2", ] |>
ggplot(aes(y = importance, x = factor(iter_rsmp))) +
geom_boxplot() +
labs(
title = "PFI variability within resampling iterations",
subtitle = "Setting n_repeats higher improves PFI estimates",
y = "PFI score (important2)",
x = "Resampling iteration (3-fold CV)"
) +
theme_minimal()The aggregated importance score for this feature is approximately
8.6, but across all resamplings the estimated PFI scores range from 4.7
to 13.53, and with insufficient resampling or low
n_repeats, we might have over- or underestimated the
features PFI by some margin.
We can also use the ratio of performance scores instead of their difference for the importance calculation, meaning that an unimportant feature is now expected to get an importance score of 1 rather than 0:
pfi_stable$importance(relation = "ratio")
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 1.8357153
#> 2: important2 2.3142350
#> 3: important3 1.1825274
#> 4: important4 2.8496906
#> 5: important5 1.2980272
#> 6: unimportant1 0.9926976
#> 7: unimportant2 1.0061897
#> 8: unimportant3 1.0007973
#> 9: unimportant4 1.0070912
#> 10: unimportant5 0.9862160LOCO measures importance by retraining the model without each feature and comparing performance to the full model. This shows the contribution of each feature when all other features are present.
loco <- LOCO$new(
task = task,
learner = learner,
measure = measure,
resampling = resampling,
n_repeats = 10
)
loco$compute()
loco$importance()
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 3.3672081
#> 2: important2 5.5690248
#> 3: important3 0.8929704
#> 4: important4 7.6462395
#> 5: important5 0.7820526
#> 6: unimportant1 -0.4194651
#> 7: unimportant2 -0.1703174
#> 8: unimportant3 -0.2434387
#> 9: unimportant4 -0.2343492
#> 10: unimportant5 -0.3475486LOCO is computationally expensive as it requires retraining for each feature, but provides clear interpretation: higher values mean larger performance drop when the feature is removed. However, it cannot distinguish between direct effects and indirect effects through correlated features.
For advanced methods that account for feature dependencies,
xplainfi provides different sampling strategies. While PFI
uses simple permutation (marginal sampling), conditional samplers can
preserve feature relationships.
Let’s demonstrate conditional sampling using adversarial random forests (ARF), which preserves relationships between features when sampling:
arf_sampler <- ConditionalARFSampler$new(task)
sample_data <- task$data(rows = 1:5)
sample_data[, .(important1, important2)]
#> important1 important2
#> <num> <num>
#> 1: 0.2875775 0.784575267
#> 2: 0.7883051 0.009429905
#> 3: 0.4089769 0.779065883
#> 4: 0.8830174 0.729390652
#> 5: 0.9404673 0.630131853Now we’ll conditionally sample the important1 feature
given the values of important2 and
important3:
sampled_conditional <- arf_sampler$sample_newdata(
feature = "important1",
newdata = sample_data,
conditioning_set = c("important2", "important3")
)
sample_data[, .(important1, important2, important3)]
#> important1 important2 important3
#> <num> <num> <num>
#> 1: 0.2875775 0.784575267 0.2372297
#> 2: 0.7883051 0.009429905 0.6864904
#> 3: 0.4089769 0.779065883 0.2258184
#> 4: 0.8830174 0.729390652 0.3184946
#> 5: 0.9404673 0.630131853 0.1739838
sampled_conditional[, .(important1, important2, important3)]
#> important1 important2 important3
#> <num> <num> <num>
#> 1: 0.8473416 0.784575267 0.2372297
#> 2: 0.1831143 0.009429905 0.6864904
#> 3: 0.7265060 0.779065883 0.2258184
#> 4: 0.7588736 0.729390652 0.3184946
#> 5: 0.4073545 0.630131853 0.1739838This conditional sampling is essential for methods like CFI and RFI
that need to preserve feature dependencies. See the perturbation-importance
article for detailed comparisons and
vignette("feature-samplers") for more details on
implemented samplers.
All methods store detailed scoring information from each resampling iteration for further analysis. Let’s examine the structure of PFI’s detailed scores:
pfi$scores() |>
head(10) |>
knitr::kable(digits = 4, caption = "Detailed PFI scores (first 10 rows)")| feature | iter_rsmp | iter_repeat | regr.mse_baseline | regr.mse_post | importance |
|---|---|---|---|---|---|
| important1 | 1 | 1 | 4.3639 | 10.8307 | 6.4668 |
| important1 | 1 | 2 | 4.3639 | 9.6298 | 5.2659 |
| important1 | 1 | 3 | 4.3639 | 7.8022 | 3.4383 |
| important1 | 1 | 4 | 4.3639 | 8.9107 | 4.5468 |
| important1 | 1 | 5 | 4.3639 | 9.9008 | 5.5369 |
| important1 | 1 | 6 | 4.3639 | 9.2441 | 4.8802 |
| important1 | 1 | 7 | 4.3639 | 9.7863 | 5.4224 |
| important1 | 1 | 8 | 4.3639 | 9.9110 | 5.5471 |
| important1 | 1 | 9 | 4.3639 | 9.8635 | 5.4996 |
| important1 | 1 | 10 | 4.3639 | 9.4797 | 5.1158 |
We can also summarize the scoring structure:
pfi$scores()[, .(
features = uniqueN(feature),
resampling_folds = uniqueN(iter_rsmp),
permutation_iters = uniqueN(iter_repeat),
total_scores = .N
)]
#> features resampling_folds permutation_iters total_scores
#> <int> <int> <int> <int>
#> 1: 10 3 10 300So $importance() always gives us the aggregated
importances across multiple resampling- and permutation-/refitting
iterations, whereas $scores() gives you the individual
scores as calculated by the supplied measure and the
corresponding importance calculated from the difference of these scores
by default.
Analogous to $importance(), you can also use
relation = "ratio" here:
pfi$scores(relation = "ratio") |>
head(10) |>
knitr::kable(digits = 4, caption = "PFI scores using the ratio (first 10 rows)")| feature | iter_rsmp | iter_repeat | regr.mse_baseline | regr.mse_post | importance |
|---|---|---|---|---|---|
| important1 | 1 | 1 | 4.3639 | 10.8307 | 2.4819 |
| important1 | 1 | 2 | 4.3639 | 9.6298 | 2.2067 |
| important1 | 1 | 3 | 4.3639 | 7.8022 | 1.7879 |
| important1 | 1 | 4 | 4.3639 | 8.9107 | 2.0419 |
| important1 | 1 | 5 | 4.3639 | 9.9008 | 2.2688 |
| important1 | 1 | 6 | 4.3639 | 9.2441 | 2.1183 |
| important1 | 1 | 7 | 4.3639 | 9.7863 | 2.2426 |
| important1 | 1 | 8 | 4.3639 | 9.9110 | 2.2711 |
| important1 | 1 | 9 | 4.3639 | 9.8635 | 2.2602 |
| important1 | 1 | 10 | 4.3639 | 9.4797 | 2.1723 |
For methods where importances are calculated based on
observation-level comparisons and with decomposable measures, we can
also retrieve observation-level information with
$obs_loss(), which works analogously to
$scores() and $importance() but at an even
more detailed level:
pfi$obs_loss()
#> feature iter_rsmp iter_repeat row_ids loss_baseline loss_post
#> <char> <int> <int> <int> <num> <num>
#> 1: important1 1 1 1 4.27303383 3.032748e+00
#> 2: important1 1 1 9 0.94121187 6.467084e+00
#> 3: important1 1 1 11 0.01545140 2.159117e-04
#> 4: important1 1 1 12 0.13814810 1.947340e-01
#> 5: important1 1 1 15 11.87605546 5.203713e+01
#> ---
#> 29996: unimportant5 3 10 290 7.97305649 7.221637e+00
#> 29997: unimportant5 3 10 294 1.06406580 1.122697e+00
#> 29998: unimportant5 3 10 295 10.92947732 1.160992e+01
#> 29999: unimportant5 3 10 296 0.03164589 2.166954e-02
#> 30000: unimportant5 3 10 298 14.52226394 1.660402e+01
#> obs_importance
#> <num>
#> 1: -1.240286312
#> 2: 5.525872565
#> 3: -0.015235487
#> 4: 0.056585874
#> 5: 40.161075065
#> ---
#> 29996: -0.751419255
#> 29997: 0.058631029
#> 29998: 0.680446985
#> 29999: -0.009976353
#> 30000: 2.081758786Since we computed PFI using the mean squared error
(msr("regr.mse")), we can use the associated
Measure$obs_loss(), the squared error.
In the resulting table we see
loss_baseline: The loss (squared error) for the
baseline model before permutationloss_post: The loss for this observation after
permutation (or in the case of LOCO, after refit)obs_importance: The difference (or ratio if
relation = "ratio") of the two lossesNote that not all measures have a Measure$obs_loss():
Some measures like msr("classif.auc") are not decomposable,
so observation-wise loss values are not available.
In other cases, the corresponding obs_loss() is just not
yet implemented in mlr3measures,
but will likely be in the future.
All importance methods support confidence intervals and p-values via
the ci_method argument in $importance().
Available approaches range from empirical quantiles and corrected
t-tests (Nadeau & Bengio) for resampling-based variability, to
observation-wise inference methods like CPI/cARFi (for CFI)
and Lei et al. (2018) (for LOCO). Multiplicity correction
via p_adjust is supported for all methods that produce
p-values.
For a comprehensive guide covering all inference methods, see the Inference for Feature Importance article.
By default, xplainfi trains the learner internally via
mlr3::resample(). However, if you have already trained a
learner (for example because training is expensive or you want to
explain a specific model) you can pass it directly to perturbation-based
methods (PFI, CFI, RFI) and
SAGE methods. Refit-based methods (LOCO /
WVIM) require retraining by design and will warn if given a
pretrained learner. The only requirement is that the
resampling must be instantiated and have exactly one
iteration (i.e., a single test set). This is necessary because a
pre-trained learner corresponds to a single fitted model, and there is
no meaningful way to associate it with multiple resampling folds.
A holdout resampling is the natural choice here. We first train the
learner on the train set and PFI will calculate importance
using the trained learner and the corresponding test set defined by the
resampling:
resampling_holdout <- rsmp("holdout")$instantiate(task)
learner_trained <- lrn("regr.ranger", num.trees = 100)
learner_trained$train(task, row_ids = resampling_holdout$train_set(1))
pfi_pretrained <- PFI$new(
task = task,
learner = learner_trained,
measure = measure,
resampling = resampling_holdout,
n_repeats = 10
)
pfi_pretrained$compute()
pfi_pretrained$importance()
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 5.704862015
#> 2: important2 8.103928832
#> 3: important3 1.316753691
#> 4: important4 12.698409203
#> 5: important5 1.466995623
#> 6: unimportant1 0.119573480
#> 7: unimportant2 -0.093424027
#> 8: unimportant3 -0.005107288
#> 9: unimportant4 0.069379462
#> 10: unimportant5 0.028409484A common real-world scenario is that the learner was trained on some
dataset and you want to explain the model on entirely new, unseen data.
In that case, create a task from the new data (via
as_task_regr() for example) and use
rsmp("custom") to designate all rows as the test set. The
resampling here is purely a technicality used for internal consistency,
and the train set is irrelevant since the learner is already trained. A
utility function rsmp_all_test() can be used as a shortcut
to achieve the same goal.
# Simulate: learner was trained elsewhere, we have new data to use
new_data <- tgen("friedman1")$generate(n = 100)
# Same as rsmp_all_test(task)
resampling_custom <- rsmp("custom")$instantiate(
new_data,
train_sets = list(integer(0)),
test_sets = list(new_data$row_ids)
)
pfi_newdata <- PFI$new(
task = new_data,
learner = learner_trained,
measure = measure,
resampling = resampling_custom,
n_repeats = 10
)
pfi_newdata$compute()
pfi_newdata$importance()
#> Key: <feature>
#> feature importance
#> <char> <num>
#> 1: important1 6.02250024
#> 2: important2 6.81053856
#> 3: important3 0.62095664
#> 4: important4 16.60573263
#> 5: important5 2.48112576
#> 6: unimportant1 -0.11697900
#> 7: unimportant2 0.21932697
#> 8: unimportant3 0.05253067
#> 9: unimportant4 0.05513399
#> 10: unimportant5 -0.04258742If you pass a trained learner with a multi-fold or non-instantiated resampling, you will get an informative error at construction time:
PFI$new(
task = task,
learner = learner_trained,
measure = measure,
resampling = rsmp("cv", folds = 3)
)
#> Error in `super$initialize()`:
#> ! A pre-trained <Learner> requires an instantiated <Resampling>
#> ℹ Instantiate the <Resampling> before passing it, e.g.
#> `rsmp("holdout")$instantiate(task)`Both PFI/CFI/RFI and LOCO/WVIM support parallel execution to speed up
computation when working with multiple features or expensive learners.
The parallelization follows mlr3’s approach, allowing users to choose
between mirai and future backends.
The future package provides a simple interface for
parallel and distributed computing:
library(future)
plan("multisession", workers = 2)
# PFI with parallelization across features
pfi_parallel = PFI$new(
task,
learner = lrn("regr.ranger"),
measure = msr("regr.mse"),
n_repeats = 10
)
pfi_parallel$compute()
pfi_parallel$importance()
# LOCO with parallelization (uses mlr3fselect internally)
loco_parallel = LOCO$new(
task,
learner = lrn("regr.ranger"),
measure = msr("regr.mse")
)
loco_parallel$compute()
loco_parallel$importance()The mirai package offers a modern alternative for
parallel computing: