Papers
Topics
Authors
Recent
Search
2000 character limit reached

Leave-One-Out Influence in ML

Updated 14 July 2026
  • Leave-one-out influence is a deletion-based sensitivity measure that quantifies how removing a single data point, covariate, or training event changes a model’s loss or output distribution.
  • It is widely used to evaluate predictive stability and generalization by comparing outcomes with and without specific components, addressing computational bottlenecks in large or high-dimensional models.
  • Variants such as leave-one-covariate-out and approximations like ALO extend its application to diverse contexts, informing model fairness, robustness, and active learning strategies.

Leave-one-out influence is a deletion-based notion of sensitivity: one omits a single unit—most commonly a training example, but in some settings a covariate, an agent, or a specific training event—and measures the resulting change in a fitted model, a prediction, a loss, a risk estimate, or an output distribution. In the literature, exact leave-one-out (LOO) is the canonical reference because it answers a direct counterfactual question: what would the procedure have produced had that unit been absent? The same literature also treats LOO as a computational bottleneck, a stability concept, an information-theoretic observable, and a target for approximation in high-dimensional and nonconvex regimes (Brophy et al., 2022, Cao et al., 2020, Wang et al., 2024, Cui et al., 28 May 2025).

1. Core concept and principal objects

A standard supervised-learning formulation measures the influence of a training example zi=(xi,yi)z_i=(x_i,y_i) on a target example ze=(xe,ye)z_e=(x_e,y_e) through the change in target loss after retraining without ziz_i: ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)). This definition makes LOO influence a retraining-based quantity in loss space rather than a direct measure of parameter displacement or raw prediction displacement. Positive values indicate that ziz_i reduces the target loss, while negative values indicate that removing ziz_i improves the target prediction (Brophy et al., 2022).

A distinct individual-level formulation is leave-one-out unfairness, which asks whether the inclusion or removal of a single other person in the training set can change a fixed individual’s predictive distribution. For a learning rule hh, training sample SS, and query point xx, the quantity is

LUF(h,S,x)=maxi,kPr[hS(x)=k]Pr[hS(i)(x)=k].\mathrm{LUF}(h,S,x)=\max_{i,k}\left|\Pr[h_S(x)=k]-\Pr[h_{S^{(\setminus i)}}(x)=k]\right|.

This shifts attention from aggregate error to the consistency of a specific person’s outcome under unit changes to the training data (Black et al., 2021).

The deleted unit need not be a training example. In high-dimensional regression, leave-one-covariate-out removes a predictor ze=(xe,ye)z_e=(x_e,y_e)0 and measures how much the entire LASSO solution path changes: ze=(xe,ye)z_e=(x_e,y_e)1 In stochastic training, trajectory-specific leave-one-out removes a datum from the specific iteration at which it appeared and measures the resulting change in final validation loss: ze=(xe,ye)z_e=(x_e,y_e)2 These variants preserve the deletion logic while changing the omitted object and the measured response (Cao et al., 2020, Wang et al., 2024).

Deleted unit Representative quantity Measured change
Training example ze=(xe,ye)z_e=(x_e,y_e)3 ze=(xe,ye)z_e=(x_e,y_e)4 Target loss after retraining
Other person in training set ze=(xe,ye)z_e=(x_e,y_e)5 Predictive distribution for one individual
Covariate ze=(xe,ye)z_e=(x_e,y_e)6 ze=(xe,ye)z_e=(x_e,y_e)7 Whole LASSO path discrepancy
Time-specific training event ze=(xe,ye)z_e=(x_e,y_e)8 ze=(xe,ye)z_e=(x_e,y_e)9 Final validation loss on a fixed trajectory

These definitions are not interchangeable. Some quantify self-influence, some cross-point influence, some target prediction error, and some target the learned representation or optimization trajectory itself. That distinction is central to the modern literature.

2. Leave-one-out error, predictive stability, and generalization

One classical object is the leave-one-out error estimate

ziz_i0

where ziz_i1 is the dataset with observation ziz_i2 removed. A general non-asymptotic analysis introduces ziz_i3 stability through

ziz_i4

which measures the ziz_i5 magnitude of the one-point deletion effect on loss evaluated at an independent test point. This framework yields moment bounds and PAC-style exponential bounds for the discrepancy between ziz_i6 and the true prediction error; for ridge regression it gives explicit ziz_i7-scale LOO generalization bounds under bounded or sub-Gaussian assumptions (Celisse et al., 2016).

In kernel methods and deep models in the kernel regime, LOO becomes explicitly computable. For kernel ridge regression with fitted-value operator ziz_i8, the deleted-case residual is

ziz_i9

This converts LOO retraining into a single kernel solve plus access to the diagonal of ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).0, and the resulting LOO loss and accuracy were shown to track double descent, random-label degradation, and transfer-learning behavior in the kernel regime (Bachmann et al., 2022).

LOO residuals also support predictive inference. In high-dimensional linear regression, with

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).1

the empirical quantiles of ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).2 can be used to form prediction intervals

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).3

Uniform asymptotic validity follows under a case-deletion stability condition requiring that deleting one observation has asymptotically negligible effect on the fitted predictor in the prediction-relevant norm. In that sense, the paper treats LOO influence as asymptotic negligibility of one-case deletion, sufficient to transfer the distribution of LOO residuals to the future prediction error (Steinberger et al., 2016).

The same deletion geometry can also distort evaluation. In LOOCV for binary labels,

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).4

so the training-fold mean is a decreasing affine function of the left-out label. This produces a negative correlation between the omitted label and the training-fold label distribution, termed distributional bias. Because many models regress toward the training mean, aggregated LOOCV metrics such as auROC and auPR can be biased, and the bias can favor weaker regularization. A rebalanced variant removes one opposite-label training point so that all training folds have identical label composition (Austin et al., 2024).

3. Information-theoretic and distributional formulations

A distinct line of work formalizes leave-one-out influence information-theoretically. In supervised learning with supersample

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).5

and loss vector

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).6

the central quantity is the leave-one-out evaluated conditional mutual information

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).7

Conditioned on the full supersample ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).8, this measures how much the losses reveal which point was omitted. The same paper places it in the hierarchy

ILOO(zi,ze)=(ye,A(D{zi})(xe))(ye,A(D)(xe)).\mathcal{I}_{LOO}(z_i, z_e) = \ell(y_e, A(D \setminus \{z_i\})(x_e)) - \ell(y_e, A(D)(x_e)).9

For interpolating ziz_i0–ziz_i1 learners it proves

ziz_i2

and for the unconditional root quantity,

ziz_i3

This identifies a precise bridge from omit-one behavior to population risk, and in the realizable VC setting it recovers optimal rates for the one-inclusion graph algorithm (Haghifam et al., 2022).

A complementary framework defines leave-one-out distinguishability by comparing entire output distributions under inclusion versus exclusion of a record: ziz_i4 Two important instantiations are mean-distance LOOD,

ziz_i5

and KL-based LOOD for Gaussian predictive distributions. In the latter case the quantity depends on both mean and covariance changes, which makes it suitable for analyzing leakage and membership inference. Under a GP or NNGP model of training randomness, LOOD unifies leave-one-out influence, memorization, and privacy risk; the literature further shows that the differing point is a stationary query for KL-LOOD under mild kernel conditions, and that optimized queries can reconstruct training examples (Ye et al., 2023).

These two directions differ in observable. Leave-one-out CMI measures information revealed by loss patterns about the omitted index, whereas LOOD measures statistical distance between output distributions under neighboring training sets. Both, however, replace purely parametric sensitivity with distributional change induced by omission.

4. Approximate leave-one-out and high-dimensional asymptotics

Exact LOO retraining is often replaced by influence-style approximations. For regularized empirical risk minimization,

ziz_i6

approximate leave-one-out cross-validation replaces ziz_i7 by a Newton correction formed from the full-data solution ziz_i8. In the smooth case,

ziz_i9

with

ziz_i0

A recent high-dimensional analysis proves that, under Gaussian covariates and strong convexity, these ALO weights are close to their mean-field counterparts even for non-differentiable regularizers, so ALO approximates the exact leave-one-out quantity up to negligible error terms (Bellec, 5 Jan 2025).

The same idea now appears inside conformal prediction. For Jackknife+ and Jackknife-minmax, the paper defines

ziz_i1

and proves the new uniform bound

ziz_i2

with high probability. This is the conformal-specific analogue of an influence approximation, but at the test covariate ziz_i3 rather than at the held-out training covariate ziz_i4. As a consequence, ALO-based Jackknife+ and Jackknife-minmax retain asymptotic coverage and efficiency while substantially reducing runtime (Cong et al., 30 Jun 2026).

For non-decomposable losses, the standard influence-function recipe fails because a single training object can participate in multiple coupled loss terms. The Versatile Influence Function (VIF) addresses this by aligning the finite-difference direction with actual deletion: ziz_i5 In decomposable ERM this reduces exactly to the classical influence formula; for Cox regression, node embedding, and listwise ranking it serves as a first-order deletion proxy that empirically tracks brute-force LOO while being up to ziz_i6 times faster (Deng et al., 2024).

At the asymptotic end of the spectrum, precise high-dimensional results characterize the entire distribution of leave-one-out influences in convex ridge-regularized M-estimation. With

ziz_i7

the empirical distribution of ziz_i8 and the marginal law of ziz_i9 converge to explicit limiting measures determined by resolvent fixed-point equations. The same analysis gives evidence that influential samples tend to lie close to the decision boundary, making contact with a standard active-learning heuristic (Cui, 10 Jul 2026).

5. Variants beyond deleting one training example

Removing one predictor rather than one observation yields leave-one-covariate-out influence. For the LASSO path

hh0

the LOCO path fixes hh1 and compares the full and constrained paths through

hh2

Because the discrepancy aggregates over all coordinates and all hh3, it captures both the direct disappearance of variable hh4 and the indirect reorganization of the sparse model under competition and correlation. The same statistic supports variable screening and residual-bootstrap testing for single or multiple coefficients (Cao et al., 2020).

In order-sensitive optimization, the deleted unit is a specific training event on a realized trajectory. Standard SGD updates

hh5

are replaced at the deletion time hh6 by

hh7

and the effect on a validation point is

hh8

A first-order unrolling gives

hh9

where the data value embedding stores the cumulative interaction between the removed point and the subsequent trajectory. This makes LOO time-specific and order-sensitive, and reveals distinct phases in which early and late training examples exert greater impact than middle-stage examples (Wang et al., 2024).

In multi-agent LLM debate, exact LOO removes one agent from the beginning and reruns the debate among the remaining SS0 agents. To approximate this cheaply, IntrospecLOO adds one extra post-debate round in which each remaining agent is asked to ignore one designated agent’s responses. Exact re-debate has token complexity

SS1

whereas IntrospecLOO reduces this to

SS2

The measured quantity is the omission-induced change in per-agent or majority-vote performance, so the deleted unit is a participant in a social reasoning process rather than a datum in an empirical risk (Cui et al., 28 May 2025).

A different but related use appears in quickest change detection. There, a leave-one-out density estimator

SS3

is used inside a sequential likelihood-ratio detector so that the observation being scored does not appear in its own estimated post-change density. The key advantage is independence between SS4 and SS5, which yields identities such as

SS6

and supports false-alarm control and first-order asymptotic optimality. Here LOO serves as self-influence removal rather than as a diagnostic of training-point importance (Liang et al., 2022).

6. Interpretation, limitations, and controversies

Exact LOO is often treated as a gold-standard single-deletion definition, but its meaning depends sharply on the question. In gradient-boosted decision trees, exact retraining after removing one training example is the reference notion of influence and reliably identifies the single most influential example for a target prediction. Yet the same study finds that LOO performs poorly when one ranks points individually and then removes the top SS7 as a set. The reason is non-additivity: the impact of removing one example depends on which others are removed, and small deletions can change tree structure, leaf assignments, and downstream residuals. The resulting ranking instability makes exact single-point LOO a poor proxy for group influence (Brophy et al., 2022).

A related ambiguity concerns what influence estimators actually approximate. In nonlinear networks, practical influence-function estimates often match exact cold-start LOO poorly. A five-term decomposition attributes the discrepancy to warm-start gap, proximity gap, non-convergence gap, linearization error, and solver error. The main empirical conclusion is that practical methods often approximate the proximal Bregman response function (PBRF) much better than true LOO retraining. Thus influence-function algorithms may still be informative, but they frequently answer a different local-response question than “what would happen if this point were removed and the model retrained from scratch?” (Bae et al., 2022).

The fairness literature makes another point of separation: low generalization error does not imply low individual-level leave-one-out sensitivity. Leave-one-out unfairness shows that a model can have small aggregate error while still changing a specific person’s outcome because a single other person is added to or removed from the training set. The same paper reports that adversarial training and randomized smoothing have opposite empirical effects on leave-one-out fairness, which links deletion sensitivity to robustness and memorization without collapsing them into the same object (Black et al., 2021).

Across these literatures, the central interpretive caution is that “leave-one-out influence” is not a single invariant quantity. It can mean deletion effect on target loss, on predictive distribution, on the full regularization path, on the output distribution at a query, on a validation loss along a realized optimization trajectory, or on a collective decision process. Exact retraining remains the clearest counterfactual definition when computationally feasible, but approximation quality, causal interpretation, and even the identity of the deleted unit are all domain-dependent.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Leave-One-Out Influence.