InterpoLated Learning (InterpoLL) Overview
- InterpoLated Learning (InterpoLL) is a framework that integrates interpolation as a structural learning mechanism across latent representation, weight consolidation, and optimization processes.
- It mitigates shortcut learning in NLP by blending majority and minority feature representations and enhances continual learning via interpolation of previous and current model weights.
- InterpoLL also informs adaptive optimization and instance-based learning, enabling methods like ALI-G and interpolated nearest neighbors to balance performance with model stability.
Searching arXiv for the cited papers to ground the article. Searching arXiv for "Continual Learning with Weight Interpolation" and related InterpoLL uses. InterpoLated Learning (InterpoLL) denotes a set of interpolation-centered learning formulations rather than a single universally fixed algorithm. In recent arXiv usage, the label has been applied to at least three prominent settings: representation-space interpolation for mitigating shortcut learning in NLP, weight interpolation for rehearsal-based continual learning, and broader interpolation-driven designs in optimization, nonparametric prediction, instance-based learning, and neural-network architecture (Korakakis et al., 7 Jul 2025, Kozal et al., 2024, Berrada et al., 2019, Xing et al., 2018, Lian, 2021, Park et al., 2024). A related but distinct acronym is INTERPOL, an identification framework for de-anonymizing model outputs in pairwise voting settings via interpolated preference learning; despite the similar name, it addresses a different problem class (Cho et al., 16 Mar 2026).
1. Nomenclature and conceptual scope
The common element across these formulations is that interpolation is treated as an active mechanism of learning rather than as a purely numerical post-processing device. Depending on the paper, the interpolation target may be latent representations, model weights, stochastic step-sizes derived from an interpolation regime, neighbor weights in nonparametric estimation, or trainable interpolation nodes embedded directly in a neural architecture (Korakakis et al., 7 Jul 2025, Kozal et al., 2024, Berrada et al., 2019, Xing et al., 2018, Park et al., 2024).
| Formulation | Interpolation locus | Representative paper |
|---|---|---|
| Shortcut mitigation InterpoLL | Latent representations of majority and minority examples | (Korakakis et al., 7 Jul 2025) |
| CLeWI / InterpoLL in continual learning | Old and new model weights after permutation alignment | (Kozal et al., 2024) |
| ALI-G and interpolation property | Optimization regime where per-sample losses are driven to zero | (Berrada et al., 2019) |
| Interpolated-NN | Neighbor weights that diverge at zero distance | (Xing et al., 2018) |
| ADB interpolation | Coordinate-wise approximation-degree and sum-times-difference synthesis | (Lian, 2021) |
| INN | Trainable interpolation points and basis-function evaluations | (Park et al., 2024) |
This multiplicity of usage is itself an important feature of the term. It suggests that InterpoLL functions as a broader paradigm in which interpolation is elevated to a structural prior for learning, but the operational meaning of interpolation depends on the application domain.
A recurrent misconception is that “interpolation” necessarily denotes naive averaging or uncontrolled overfitting. The papers associated with InterpoLL argue for more specialized constructions: intra-class latent interpolation with for shortcut mitigation, permutation-aligned weight interpolation to exploit mode connectivity in continual learning, and clipped stochastic Polyak-style updates when the interpolation property holds in deep optimization (Korakakis et al., 7 Jul 2025, Kozal et al., 2024, Berrada et al., 2019).
2. Representation-space InterpoLL for shortcut mitigation
In "Mitigating Shortcut Learning with InterpoLated Learning" (Korakakis et al., 7 Jul 2025), InterpoLL is introduced as a model-agnostic representation-space augmentation designed to weaken spurious correlations exploited under ERM. The setup decomposes the predictor into an encoder and classifier,
with latent representation . Within each class , the method distinguishes majority examples , whose spurious features align with , from minority examples , whose features contradict the shortcut. The split is inferred by an under-parameterized auxiliary model : examples mis-predicted by are treated as minority, and correctly predicted examples as majority (Korakakis et al., 7 Jul 2025).
For each majority example , a same-class minority example 0 with 1 is sampled, and their representations are interpolated:
2
Minority examples use their normal representation. The resulting objective is
3
where 4. All model parameters are updated by back-propagating this loss (Korakakis et al., 7 Jul 2025).
Algorithmically, the method first uses 5 to partition the data into 6 and 7, then processes each minibatch by replacing the latent representation of each majority example with an interpolated representation and leaving minority examples unchanged. The forward pass and loss are then computed on the transformed latent batch (Korakakis et al., 7 Jul 2025).
The empirical scope is broad. The paper reports results on natural language inference tasks such as MNLI, FEVER, and QQP with OOD test sets and stress tests including HANS and PAWS; text-classification tasks including FDCL18, CivilComments-WILDS, and Amazon-WILDS; and domain generalization via GLUE-X. Architectures span encoder-only models such as BERT-base, BERT-large, RoBERTa-large, ELECTRA-large, and XLNet-large, encoder-decoder models such as T5-large and T5-3B, and decoder-only models such as GPT2-medium and GPT2-large (Korakakis et al., 7 Jul 2025).
A concise summary of reported benchmark deltas is as follows.
| Setting | ERM | InterpoLL |
|---|---|---|
| NLI OOD / Stress | 8 | 9 |
| FDCL18 minority accuracy | 0 | 1 |
| CivilComments minority accuracy | 2 | 3 |
| GLUE-X average | 4 | 5 |
| BERT-large on NLI 6 HANS | 7 | 8 |
The paper also reports that Uniform9 is the best interpolation ratio, whereas Uniform0 and 1 with 2 hurt either ID or OOD performance. Inter-class mixing and inverting interpolation underperform intra-class mixing. Minimum description length probing indicates that InterpoLL yields the lowest extractability of known shortcuts. With 3 synthetic label flips, the method degrades much less than ERM and other methods. On MNLI, runtime is reported as 4 h for ERM and 5 h for InterpoLL, while most other debiasing methods take at least 6 h and up to 7 h (Korakakis et al., 7 Jul 2025).
The paper is explicit about limitations. It notes a small drop in ID accuracy on some tasks, recommends interpolation in upper encoder layers, and warns that mixing may introduce unnatural representations if minority examples are too dissimilar. It also reports that a no-auxiliary variant, in which the learner self-identifies 8 and 9, still outperforms prior methods (Korakakis et al., 7 Jul 2025).
3. Weight interpolation in continual learning
In "Continual Learning with Weight Interpolation" (Kozal et al., 2024), the relevant InterpoLL formulation is called CLeWI. It is a post-task weight consolidation method for continual learning with rehearsal. After learning task 0, let 1 denote the saved network weights from task 2, and let 3 denote the weights after fine-tuning on task 4. A permutation 5 is first computed via the REPAIR procedure to align 6 to 7 in weight space, and the interpolated weights are then formed as
8
with 9. In the formulation given in the paper, 0 controls plasticity and 1 controls stability (Kozal et al., 2024).
The role of 2 is directly quantified. On split-CIFAR10, the reported ablation gives:
- 3: average accuracy 4, last-task accuracy 5, forgetting 6;
- 7: 8, 9, 0;
- 1: 2, 3, 4;
- 5: 6, 7, 8;
- 9: 0, 1, 2 (Kozal et al., 2024).
This ablation confirms the stability–plasticity trade-off claimed by the method. A small 3 favors current-task adaptation but increases forgetting; a large 4 preserves earlier-task performance but restricts adaptation to new tasks. In practice, 5 is selected by lightweight grid search on a held-out stream or by inspecting interpolation plots of test accuracy versus 6 using the replay buffer (Kozal et al., 2024).
CLeWI is designed as a plug-in over rehearsal-based training. The pseudocode given in the paper applies standard replay-based SGD with a replay buffer 7, then, for tasks 8, computes a permutation 9, interpolates the weights, and recomputes BatchNorm statistics through update_batchnorm(θ,𝓜). The buffer is used both for feature-map correlation estimates in the permutation step and for re-estimating BatchNorm statistics to avoid variance collapse. calc_permutation solves a bipartite matching on feature-map correlations, with explicit reference to Jordan et al. 2022 (Kozal et al., 2024).
The theoretical intuition is framed via the cumulative test loss
0
and the forgetting increment
1
The paper argues that minimizing cumulative loss requires both low current-task loss and low forgetting, and that SGD solutions for consecutive tasks often lie in mode-connected, or near-convex, regions of the loss landscape once aligned by permutation. A linear interpolation in this aligned space is therefore expected to remain in a low-loss valley that balances old and new performance (Kozal et al., 2024).
Empirically, the method is evaluated on class-incremental splits of CIFAR-10 with 2 tasks, CIFAR-100 with 3 tasks, and Tiny-ImageNet with 4 tasks, using a replay buffer of 5 examples and ResNet-18 as the primary architecture, with WideResNet used in ablations (Kozal et al., 2024). The paper reports the following average accuracy and forgetting improvements:
| Method pair | CIFAR-10 | CIFAR-100 | Tiny-ImageNet |
|---|---|---|---|
| ER 6 CLeWI+ER | 7, 8 FM | 9, 0 FM | 1, 2 FM |
| MIR 3 CLeWI+MIR | 4, 5 FM | 6, 7 FM | 8, 9 FM |
| DER++ 00 CLeWI+DER++ | 01, 02 FM | 03, 04 FM | 05, 06 FM |
The paper further states that the method can be plugged into ER, aGEM, ER-ACE, MIR, BIC, and DER++ with no further algorithmic changes, and that without any replay, pure interpolated SGD remains poor. That result is important because it circumscribes the method’s scope: the evidence supports CLeWI as a complement to rehearsal rather than as a replacement for it (Kozal et al., 2024).
4. Interpolation as an optimization regime: ALI-G
A different, earlier interpolation-centered usage appears in "Training Neural Networks for and by Interpolation" (Berrada et al., 2019). Here the central object is the interpolation property of supervised learning: for a parametric model 07, per-sample loss 08, and expected risk
09
the problem satisfies interpolation if there exists 10 such that
11
The paper then derives Adaptive Learning-rates for Interpolation with Gradients (ALI-G), a stochastic Polyak-style method that exploits this property (Berrada et al., 2019).
Starting from Polyak’s update
12
the interpolation setting with 13 motivates the stochastic raw stepsize
14
with a small 15 to avoid division by zero. ALI-G clips this value at a user-chosen maximum 16:
17
Clipping is presented as crucial in nonconvex settings; the paper gives the one-dimensional counterexample 18, which oscillates without clipping (Berrada et al., 2019).
The convergence guarantees are stratified by assumption class. For convex and 19-Lipschitz losses under interpolation, ALI-G attains an 20 rate. With additional 21-smoothness, the expected suboptimality improves to 22. In the strongly convex and smooth setting, the method achieves an exponential rate,
23
For certain nonconvex objectives satisfying the Restricted Secant Inequality,
24
the paper gives an exponential convergence statement when 25 and smoothness holds (Berrada et al., 2019).
The empirical evaluation covers a differentiable neural computer copy task, WRN-16-4 on SVHN, a Bi-LSTM on SNLI, WRN-40-4 and DenseNet-40-40 on CIFAR-10/100, and ResNet-18 on ImageNet without data augmentation (Berrada et al., 2019). Representative figures include:
- on SVHN after 26 epochs, ALI-G reaches 27 test accuracy, compared with 28 for hand-scheduled SGD;
- on SNLI, ALI-G reaches 29 for CE/SVM loss, matching SGD’s 30;
- on CIFAR-10 WRN, ALI-G achieves 31 versus SGD’s 32;
- on CIFAR-100 DenseNet, ALI-G achieves 33, equal to SGD’s 34;
- on ImageNet, with batch-size 35 over 36 GPUs and fixed 37, ALI-G reaches 38 top-5 train accuracy in 39 epochs (Berrada et al., 2019).
In this usage, InterpoLL does not denote interpolation between examples or weights. Instead, interpolation is a property of the data-fitting regime that enables a closed-form adaptive learning rate. This is a materially different interpretation of the term from the shortcut-mitigation and continual-learning formulations.
5. Nonparametric and instance-based interpolation
Two additional lines of work extend the InterpoLL idea into nonparametric estimation and instance-based learning. In "Statistical Optimality of Interpolated Nearest Neighbor Algorithms" (Xing et al., 2018), the predictor is an interpolated nearest-neighbor rule. For ordered Euclidean distances 40 from a query 41, neighborhood size 42, and a positive function 43 with 44, the estimate is
45
with weights
46
when 47, and 48 when the query coincides with a training point. The classification rule is 49 (Xing et al., 2018).
The paper proves that, under Hölder smoothness, support regularity, a compact-support density assumption, and a Tsybakov margin condition for classification, the method attains minimax-optimal rates in both regression and classification. For regression, choosing 50 yields
51
For classification, the excess-risk rate becomes
52
The analysis emphasizes the usual bias–variance decomposition: interpolated-NN reduces bias by heavily down-weighting distant neighbors but incurs a variance penalty through unequal weights. Empirically, the paper reports slightly lower excess risk than classical 53NN across simulated settings and consistently lower classification error on the HTRU2 pulsar dataset (Xing et al., 2018).
In "A New Interpolation Approach and Corresponding Instance-Based Learning" (Lian, 2021), the relevant formulation is ADB interpolation, based on the approximation-degree between numerical values. For a center 54 in an interval and approximation region 55, the approximation-degree is piecewise linear, equals 56 at 57, and vanishes on the region boundary. This is extended to a strict approximation region in 58 via an axis-aligned box (Lian, 2021).
The one-dimensional ADB interpolant reconstructs 59 locally from adjacent sample points and yields piecewise linear formulas such as
60
and
61
In higher dimensions, the paper introduces the sum-times-difference synthesis
62
with coordinate-wise partial interpolations 63 around a center value 64 (Lian, 2021).
The induced instance-based learner includes both regression and classification procedures. The ADB regressor first finds the closest training point in a Chebyshev sense, performs one-dimensional ADB interpolation along each coordinate axis, and returns the sum-times-difference estimate. The ADB classifier searches for a training point whose strict approximation region contains the query; if found, it returns that class label, otherwise it abstains or returns “unknown” (Lian, 2021).
The computational analysis states a nearest-neighbor lookup cost of 65 with a kd-tree or 66 with hash grids under assumptions, plus 67 for one-dimensional interpolation along each axis, for total cost 68. The paper reports empirical results including maximum absolute error on the order of 69 for 70 on 71, RMSE 72 versus approximately 73 for bilinear interpolation on 74, RMSE approximately 75 versus 76 for trilinear interpolation on 77, and 78 classification accuracy on test points inside strict regions for a synthetic two-class dataset (Lian, 2021).
These two works are conceptually related but methodologically distinct. Interpolated-NN is a statistical learning rule with explicit minimax analysis, whereas ADB is framed as an interpolation-first analogue-based learner with structured abstention in classification (Xing et al., 2018, Lian, 2021).
6. Interpolating neural networks and broader synthesis
A further extension of the InterpoLL idea appears in "Interpolating neural network: A novel unification of machine learning and interpolation theory" (Park et al., 2024). This paper defines InterpoLated Learning as the construction of end-to-end differentiable models by embedding classical interpolation theory into the architecture itself. Instead of dense unstructured weight matrices, the model introduces trainable interpolation points with coordinates 79 and associated values 80, and defines the forward map through interpolation basis functions (Park et al., 2024).
In one dimension, a segment network partitions the input interval into contiguous segments bounded by interpolation nodes, computes local interpolant basis functions 81, and outputs
82
In multiple dimensions, the paper avoids a full tensor of size 83 through tensor decomposition, writing
84
The corresponding forward pass for mode 85 uses
86
The paper interprets this construction as a CP-style tensor factorization of the weight tensor (Park et al., 2024).
The claimed advantages are parameter efficiency, training speed, compact memory footprint, and interpretability of learned node values as values at physical interpolation points. Parameter growth is characterized as 87 for node values, with optional node coordinates and analytic-network weights typically negligible relative to that count (Park et al., 2024).
The main application is Laser Powder Bed Fusion heat conduction, with an 88-dimensional input consisting of 89 spatial coordinates, 90 temporal coordinate, and 91 uncertain parameters. The paper reports that with 92 modes and 93 nodes in each dimension, the model uses approximately 94 node values. Reported performance includes speed-up versus an FEM-plus-surrogate pipeline of approximately 95 faster inference for a 96 mm tool-path at 97m resolution, a model size of tens of megabytes rather than gigabytes, sub-98m temperature-field error over a 99 mm scan length, calibration from only 00 FEM-generated melt-pool profiles with 01 error relative to experimental melt-pool temperatures, and real-time online control in which a comparable FFNN uses only 02 of the parameters and trains 03–04 faster to the same loss (Park et al., 2024).
The paper also states explicit limitations: selecting segment count 05, modes 06, and basis type still requires user guidance; mathematical proof of convergence and generalization bounds for InterpoLL remains open; and graph-structured data or non-rectangular domains may require specialized basis constructions (Park et al., 2024).
Taken together, these formulations suggest that InterpoLL is best understood as a research direction organized around where interpolation is inserted into the learning system. In some works it modifies latent representations to suppress shortcuts; in others it merges models across tasks, exploits the interpolation regime of overparameterized training, reweights nearest neighbors, encodes instance-based approximation rules, or replaces dense layers with interpolation-theoretic operators (Korakakis et al., 7 Jul 2025, Kozal et al., 2024, Berrada et al., 2019, Xing et al., 2018, Lian, 2021, Park et al., 2024). A separate but related direction, INTERPOL, uses interpolated preference data and a staged triplet-based curriculum to identify anonymous LLM outputs and quantify ranking-manipulation threats in Arena-style leaderboards, underscoring that interpolation has also become a design primitive in preference learning (Cho et al., 16 Mar 2026).