---
title: Parallel Ensembling in Machine Learning
url: https://www.emergentmind.com/topics/parallel-ensembling
type: topic
---

# Parallel Ensembling in Machine Learning

Searching arXiv for recent papers on parallel ensembling and related ensemble formulations.
arxiv_search.query{"search_query":"all:\"parallel ensembling\" OR all:\"Mixture-model-like Ensemble\" OR all:\"Tangent Model Composition\" OR all:\"deep parallel collaboration\"","start":0,"max_results":10}
arxiv_search.query result: {
  "results": [
    {
      "id": "2605.00419",
      "title": "Rethinking LLM Ensembling from the Perspective of Mixture Models",
      "authors": [
        "Jiale Fu",
        "Yifan Wang",
        "Wenhao Huang",
        "Xiangru Tang",
        "Zhilin Yang"
      ],
      "abstract": "Model ensembling is a well-established technique for improving the performance of machine learning models. Conventionally, this involves averaging the output distributions of multiple models and selecting the most probable label. This idea has been naturally extended to large language models (LLMs), yielding improved performance but incurring substantial computational cost. This inefficiency stems from directly applying conventional ensemble implementation to LLMs, which require a separate forward pass for each model to explicitly compute the ensemble distribution. In this paper, we propose the Mixture-model-like Ensemble (ME). By reinterpreting the ensemble as a mixture model, ME stochastically selects a single model at each step to generate the next token, thereby avoiding the need to explicitly compute the full ensemble distribution. ME is mathematically equivalent to sampling from the ensemble distribution, but requires invoking only one model, making it 1.78x-2.68x faster than conventional ensemble. Furthermore, this perspective connects LLM ensembling and token-level routing methods, suggesting that LLM ensembling is a special case of routing methods. Our findings open new avenues for efficient LLM ensembling and motivate further exploration of token-level routing strategies for LLMs. Our code is available at https://github.com/jialefu/Mixture-model-like-Ensemble/."
    },
    {
      "id": "2404.12715",
      "title": "Ensemble Learning for Heterogeneous Large Language Models with Deep Parallel Collaboration",
      "authors": [
        "Zhongzhi Yu",
        "Yufan Li",
        "Bo Li",
        "Huiping Zhuang",
        "Wen Li"
      ],
      "abstract": "Large language models (LLMs) exhibit complementary strengths in various tasks, motivating the research of LLM ensembling. However, existing work focuses on training an extra reward model or fusion model to select or combine all candidate answers, posing a great challenge to the generalization on unseen data distributions. Besides, prior methods use textual responses as communication media, ignoring the valuable information in the internal representations. In this work, we propose a training-free ensemble framework DeePEn, fusing the informative probability distributions yielded by different LLMs at each decoding step. Unfortunately, the vocabulary discrepancy between heterogeneous LLMs directly makes averaging the distributions unfeasible due to the token misalignment. To address this challenge, DeePEn maps the probability distribution of each model from its own probability space to a universal relative space based on the relative representation theory, and performs aggregation. Next, we devise a search-based inverse transformation to transform the aggregated result back to the probability space of one of the ensembling LLMs (main model), in order to determine the next token. We conduct extensive experiments on ensembles of different number of LLMs, ensembles of LLMs with different architectures, and ensembles between the LLM and the specialist model. Experimental results show that (i) DeePEn achieves consistent improvements across six benchmarks covering subject examination, reasoning, and knowledge, (ii) a well-performing specialist model can benefit from a less effective LLM through distribution fusion, and (iii) DeePEn has complementary strengths with other ensemble methods such as voting."
    },
    {
      "id": "2310.09729",
      "title": "Private Synthetic Data Meets Ensemble Learning",
      "authors": [
        "Yunpeng Li",
        "Ishaan Pendurthi",
        "Jiayao Ding",
        "Nivedita Poojary",
        "Dingfan Chen",
        "Carsten Maple",
        "Florian Kerschbaum"
      ],
      "abstract": "When machine learning models are trained on synthetic data and then deployed on real data, there is often a performance drop due to the distribution shift between synthetic and real data. In this paper, we introduce a new ensemble strategy for training downstream models, with the goal of enhancing their performance when used on real data. We generate multiple synthetic datasets by applying a differential privacy (DP) mechanism several times in parallel and then ensemble the downstream models trained on these datasets. While each synthetic dataset might deviate more from the real data distribution, they collectively increase sample diversity. This may enhance the robustness of downstream models against distribution shifts. Our extensive experiments reveal that while ensembling does not enhance downstream performance (compared with training a single model) for models trained on synthetic data generated by marginal-based or workload-based DP mechanisms, our proposed ensemble strategy does improve the performance for models trained using GAN-based DP mechanisms in terms of both accuracy and calibration of downstream models."
    },
    {
      "id": "2307.08114",
      "title": "Tangent Model Composition for Ensembling and Continual Fine-tuning",
      "authors": [
        "Tianyu Chen",
        "Dingli Yu",
        "Tongshuang Shou",
        "Nan Du",
        "Shan Jagadeesh",
        "Xinghao Wang",
        "Junhong Shen",
        "Daya Khudia",
        "Jianyu Zhang",
        "Ying Xiao",
        "Hui Miao",
        "Michael Rabbat",
        "Yingbin Liang"
      ],
      "abstract": "Tangent Model Composition (TMC) is a method to combine component models independently fine-tuned around a pre-trained point. Component models are tangent vectors to the pre-trained model that can be added, scaled, or subtracted to support incremental learning, ensembling, or unlearning. Component models are composed at inference time via scalar combination, reducing the cost of ensembling to that of a single model. TMC improves accuracy by 4.2% compared to ensembling non-linearly fine-tuned models at a 2.5x to 10x reduction of inference cost, growing linearly with the number of component models. Each component model can be forgotten at zero cost, with no residual effect on the resulting inference. When used for continual fine-tuning, TMC is not constrained by sequential bias and can be executed in parallel on federated data. TMC outperforms recently published continual fine-tuning methods almost uniformly on each setting -- task-incremental, class-incremental, and data-incremental -- on a total of 13 experiments across 3 benchmark datasets, despite not using any replay buffer. TMC is designed for composing models that are local to a pre-trained embedding, but could be extended to more general settings."
    },
    {
      "id": "2502.21265",
      "title": "Token-level Ensembling of Models with Different Vocabularies",
      "authors": [
        "Antonios Anastasopoulos",
        "Yue Ma",
        "Jian Wang",
        "Philipp Koehn"
      ],
      "abstract": "Model ensembling is a technique to combine the predicted distributions of two or more models, often leading to improved robustness and performance. For ensembling in text generation, the next token's probability distribution is derived from a weighted sum of the distributions of each individual model. This requires the underlying models to share the same subword vocabulary, limiting the applicability of ensembling, since many open-sourced models have distinct vocabularies. In research settings, experimentation or upgrades to vocabularies may introduce multiple vocabulary sizes. This paper proposes an inference-time only algorithm that allows for ensembling models with different vocabularies, without the need to learn additional parameters or alter the underlying models. Instead, the algorithm ensures that tokens generated by the ensembled models agree in their surface form. We apply this technique to combinations of traditional encoder-decoder models and decoder-only LLMs and evaluate on machine translation. In addition to expanding to model pairs that were previously incapable of token-level ensembling, our algorithm frequently improves translation performance over either model individually."
    },
    {
      "id": "2605.18696",
      "title": "Ensembling Tabular Foundation Models - A Diversity Ceiling And A Calibration Trap",
      "authors": [
        "Matteo M. Pasin",
        "Robert A. Kleinman",
        "Ehsan Soltani",
        "Merve Emre",
        "Maxime Riche",
        "Amar Saini"
      ],
      "abstract": "Tabular foundation models (TFMs) now match or beat tuned gradient-boosted trees on a growing fraction of tabular tasks, but no single TFM wins on every dataset. Ensembling is the go to fix here, and it works less well than expected. Six modern TFMs form a near-redundant pool: their mean pairwise Q-statistic is 0.961, close enough to 1 that any convex combination is bounded above. We benchmark six ensemble strategies over six TFMs on 153 OpenML classification tasks. The best ensemble, two-level cascade stacking, buys +0.18% accuracy over the strongest single TFM at 253x the compute. A Friedman and Nemenyi analysis places three ensembles and the best base TFM in a single equivalence group; three other ensembles are significantly worse than the best base. Stacking with a logistic-regression meta-learner is the most striking case: competitive accuracy and ROC-AUC, the worst log-loss rank among the ensembles. The meta-learner improves accuracy by sharpening class boundaries, which destroys calibration. We recommend greedy selection as the practical default."
    },
    {
      "id": "2009.09359",
      "title": "Not Low-Resource Anymore: Aligner Ensembling, Batch Filtering, and New Datasets for Bengali-English Machine Translation",
      "authors": [
        "Mushfiqur Rahman",
        "Anik Paul",
        "Sajedul Karim",
        "Shafkat Amin Tonmoy",
        "Abu Nowshed Chy",
        "M. Saiful Bari",
        "Rashedur Rahman",
        "Shafiq Joty"
      ],
      "abstract": "Despite being the seventh most widely spoken language in the world, Bengali has received much less attention in machine translation literature due to being low in resources. Most publicly available parallel corpora for Bengali are not large enough; and have rather poor quality, mostly because of incorrect sentence alignments resulting from erroneous sentence segmentation, and also because of a high volume of noise present in them. In this work, we build a customized sentence segmenter for Bengali and propose two novel methods for parallel corpus creation on low-resource setups: aligner ensembling and batch filtering. With the segmenter and the two methods combined, we compile a high-quality Bengali-English parallel corpus comprising of 2.75 million sentence pairs, more than 2 million of which were not available before. Training on neural models, we achieve an improvement of more than 9 BLEU score over previous approaches to Bengali-English machine translation. We also evaluate on a new test set of 1000 pairs made with extensive quality control. We release the segmenter, parallel corpus, and the evaluation set, thus elevating Bengali from its low-resource status. To the best of our knowledge, this is the first ever large scale study on Bengali-English machine translation. We believe our study will pave the way for future research on Bengali-English machine translation as well as other low-resource languages."
    },
    {
      "id": "2005.00570",
      "title": "When Ensembling Smaller Models is More Efficient than Single Large Models",
      "authors": [
        "Tom Hennigan",
        "Trevor Cai",
        "Tamara Norman",
        "Igor Babuschkin"
      ],
      "abstract": "Ensembling is a simple and popular technique for boosting evaluation performance by training multiple models (e.g., with different initializations) and aggregating their predictions. This approach is commonly reserved for the largest models, as it is commonly held that increasing the model size provides a more substantial reduction in error than ensembling smaller models. However, we show results from experiments on CIFAR-10 and ImageNet that ensembles can outperform single models with both higher accuracy and requiring fewer total FLOPs to compute, even when those individual models' weights and hyperparameters are highly optimized. Furthermore, this gap in improvement widens as models become large. This presents an interesting observation that output diversity in ensembling can often be more efficient than training larger models, especially when the models approach the size of what their dataset can foster. Instead of using the common practice of tuning a single large model, one can use ensembles as a more flexible trade-off between a model's inference speed and accuracy. This also potentially eases hardware design, e.g., an easier way to parallelize the model across multiple workers for real-time or distributed inference."
    },
    {
      "id": "1810.05546",
      "title": "Uncertainty in Neural Networks: Approximately Bayesian Ensembling",
      "authors": [
        "Pearce, T.",
        "Zaki, M.",
        "Brintrup, A.",
        "Neely, A."
      ],
      "abstract": "Understanding the uncertainty of a neural network's (NN) predictions is essential for many purposes. The Bayesian framework provides a principled approach to this, however applying it to NNs is challenging due to large numbers of parameters and data. Ensembling NNs provides an easily implementable, scalable method for uncertainty quantification, however, it has been criticised for not being Bayesian. This work proposes one modification to the usual process that we argue does result in approximate Bayesian inference; regularising parameters about values drawn from a distribution which can be set equal to the prior. A theoretical analysis of the procedure in a simplified setting suggests the recovered posterior is centred correctly but tends to have an underestimated marginal variance, and overestimated correlation. However, two conditions can lead to exact recovery. We argue that these conditions are partially present in NNs. Empirical evaluations demonstrate it has an advantage over standard ensembling, and is competitive with variational methods."
    }
  ]
}
Parallel ensembling denotes a family of ensemble constructions in which multiple predictors, model components, aligners, or data-generation runs are executed independently and combined through a parallelizable aggregation operator rather than through a single monolithic model. Across recent literature, the combined object may be a class-probability vector, a next-token distribution, a detokenized surface-form hypothesis, a relative-representation vector, a tangent parameter offset, or a union of candidate sentence alignments. The common motivation is to exploit complementary errors while preserving throughput, modularity, or privacy guarantees; the common constraint is that gains depend on diversity, communication overhead, and the geometry of the combination space [2605.00419][2307.08114][2605.18696].

## 1. Core formulations

The canonical ensemble rule averages predictive distributions. For classification and next-token prediction, a standard form is
$$
p_{\mathrm{ens}}(y\mid x)=\sum_{k=1}^M \pi_k\,p_k(y\mid x),
$$
with $\pi_k>0$ and $\sum_k \pi_k=1$. Closely related forms include arithmetic averaging of softmax probabilities, geometric-mean aggregation, and majority vote over hard labels. In all cases, the ensemble predictor is defined pointwise from independently computed model outputs, so the statistical object being combined is explicit [2605.00419][2005.00570].

Parallelism enters through the execution model. In conventional LLM ensembling, sampling each token from $p_{\mathrm{ens}}$ requires a full forward pass through every constituent model at every step, which yields $M$ forward passes per token. In classical vision settings, an ensemble of $k$ identical small models costs $k\,C_s$ FLOPs, whereas a single larger model costs $C_L$; under ideal device-level parallelism with $k\le m$ workers, latency is approximately $t_s+t_{\mathrm{comm}}$, not $k\,t_s$, so an ensemble can dominate a larger single model in both accuracy and wall-clock latency when communication overhead is small [2605.00419][2005.00570].

A second formal family replaces output-space aggregation with parameter-space aggregation. Tangent Model Composition defines tangent components $\delta_i=\theta_i-\theta_0$ around a fixed pretrained point $\theta_0$, then constructs
$$
\theta_{\mathrm{ens}}=\theta_0+\sum_{i=1}^N \alpha_i \delta_i.
$$
Because the tangent model is linear in $\delta_i$, inference can be reduced to a single composed model rather than an explicit multi-model evaluation loop [2307.08114].

These formulations already indicate that “parallel ensembling” is not a single algorithm. It is a design pattern whose instances differ in what is aggregated, when aggregation occurs, and whether the implementation materializes all constituent predictions.

## 2. Combination loci and implementation regimes

Recent work instantiates parallel ensembling at several distinct loci.

| Combination locus | Operator | Representative paper |
|---|---|---|
| Output probabilities | Uniform or weighted averaging; vote; geometric mean | [2005.00570], [2310.09729], [2605.18696] |
| Token generation path | Sample model index, then sample token | [2605.00419] |
| Surface-form agreement across vocabularies | Search over agreeing token pairs | [2502.21265] |
| Relative representation space | Arithmetic mean in anchor-based relative space | [2404.12715] |
| Parameter offsets | Linear blend of tangent components | [2307.08114] |
| Candidate alignment sets | Set union followed by semantic filtering | [2009.09359] |

In prediction-space methods, parallelism is operationally straightforward: each base model produces a probability vector and an ensemble rule combines them. In data-generation methods, the independently computed objects are not predictions but synthetic datasets; downstream models are trained separately and ensembled only at test time. In corpus-construction methods, the combined objects are alignment candidates rather than model scores [2310.09729][2009.09359].

This heterogeneity has two consequences. First, the same term can describe either parallel training, parallel inference, or both. Second, efficiency claims are not interchangeable: a method that reduces inference-time passes per token is solving a different systems problem from a method that diversifies synthetic data under a fixed privacy budget or a method that unions aligner outputs before semantic filtering. A plausible implication is that comparisons across papers are most meaningful when the aggregation locus is held fixed.

## 3. Autoregressive language-model ensembling

In autoregressive generation, the main obstacle to parallel ensembling is that the conventional ensemble rule is expensive to materialize token by token. The Mixture-model-like Ensemble reinterprets
$$
p_{\mathrm{ens}}(y\mid x)=\sum_{i=1}^M \pi_i p_i(y\mid x)
$$
as a two-stage sampler: first sample an index $i\sim \mathrm{Multinomial}(\pi)$, then sample $y\sim p_i(y\mid x)$. This is mathematically equivalent to sampling from the ensemble distribution, but it invokes only one model at each step. The method relies on lazy Key-Value cache synchronization: if a dormant model is reactivated after $k$ steps, it performs a small prefill on the missing tokens to rebuild its cache. On H100, reported throughput gains are $1.78\times$ for a two-model sequential baseline and $2.65\times$ for a three-model sequential baseline, with similar-model and heterogeneous-model evaluations on GSM8K, MMLU, BBH, and ARC showing near-parity with conventional ensembling [2605.00419].

Parallel ensembling becomes more intricate when constituent LLMs have different vocabularies. Agreement-Based Ensembling addresses this by enforcing agreement in detokenized surface form rather than token identity. Let $M_1$ and $M_2$ share a common detokenized history $h$ but have distinct vocabularies $V_1$ and $V_2$. ABE searches the product space $V_1\times V_2$ for token pairs whose detokenized extensions coincide, using cube-pruning over top-$N$ candidates and a stalling mechanism when one model’s local history is ahead of the other’s. In machine translation, the method yields positive $\Delta$COMET and $\Delta$BLEU for same-vocabulary and different-vocabulary pairings, and reported average $\Delta$BLEU relative to interpolation versus ABE is $+0.16$ versus $+1.07$ when both are applicable [2502.21265].

DeePEn generalizes heterogeneous LLM ensembling by moving aggregation into a universal relative space. Each model probability vector $p^{(i)}$ is mapped to $r^{(i)}=p^{(i)}R^{(i)}$, where $R^{(i)}$ is a normalized relative representation matrix defined over a common anchor set. The ensemble relative vector is the arithmetic mean $r^*=\frac1N\sum_i r^{(i)}$, and a search-based inverse transformation then solves
$$
\hat p=\arg\min_{p\in\Delta^{|V_{\rm main}|}} D_{\mathrm{KL}}(p\,R^{(\rm main)}\|r^*)
$$
within the main model’s simplex. Across six benchmarks, including MMLU, ARC-Challenge, GSM8K, PIQA, TriviaQA, and NaturalQuestions, DEEPEN is reported to outperform the best single model; for example, MMLU rises from approximately $63.2\%$ to approximately $65.7\%$, and ARC-Challenge from approximately $74.1\%$ to approximately $75.9\%$ [2404.12715].

Taken together, these results refute two common assumptions. Shared vocabularies are not necessary for token-level collaboration, and explicit evaluation of every constituent distribution at every decoding step is not necessary to reproduce or approximate the behavior of a conventional ensemble.

## 4. Parallel ensembling beyond LLM decoding

Outside autoregressive generation, parallel ensembling appears in data curation, privacy-preserving synthesis, and conventional supervised prediction.

For Bengali–English machine translation, aligner ensembling combines the outputs of multiple sentence aligners by document-wise set union,
$$
S_E(d)=\bigcup_{i\in I} S_i(d),
$$
and then restores precision via LASER-based semantic filtering,
$$
S_{\mathrm{filtered}}=\{(s,t)\in S_E:\mathrm{sim}(s,t)\ge \tau\}.
$$
With Hunalign, Bleualign, and Gargantua, the best-performing ensemble is Bleualign $\cup$ Hunalign, with optimal margin $\tau^*=0.96$. On a gold set of $3\,383$ human-aligned sentences, BH attains $90.26$ F$_1$, and BH + LASER$(\tau=0.96)$ attains $92.75$ F$_1$. Downstream MT trained on BH + LASER uses $1.44$M pairs and reaches $22.1$ BLEU on SUPara and $35.7$ BLEU on SIPC, while the full $2.75$M corpus yields $32.1$ BLEU, $+9.4$ over the best previously reported Bengali–English system [2009.09359].

In private synthetic data, parallel ensembling operates at the data-generator level. A total privacy budget $(\epsilon,\delta)$ is split across $k$ independent executions of a DP mechanism $\mathcal M$, either as a simple DP ensemble using $(\epsilon/k,\delta/k)$ per run or as a DP ensemble with Poisson subsampling at rate $p$ before applying an amplified budget. The downstream classifiers trained on the resulting synthetic datasets are then ensembled by uniform averaging of logits or probabilities. On Adult with DP-CTGAN, the reported averages across four downstream models are: single synthetic dataset, accuracy $0.780\pm0.015$ and ECE $0.150\pm0.018$; DP ensemble $(k=3)$, $0.801\pm0.012$ and $0.132\pm0.016$; DP ensemble + subsampling $(p=0.2)$, $0.821\pm0.011$ and $0.104\pm0.012$ [2310.09729].

In image classification, parallel ensembling has been analyzed from a FLOP-efficiency perspective. On CIFAR-10, a single WRN-16-8 uses $450$M FLOPs and attains $95.0\%$ top-1 accuracy, whereas an ensemble of $8\times$ WRN-16-2 uses $320$M FLOPs and attains $95.2\%$. On ImageNet, a single EfficientNet-B4 uses $4.20$ GFLOPs and attains $82.0\%$, whereas an ensemble of $2\times$ B3 uses $3.60$ GFLOPs and attains $82.5\%$ [2005.00570].

These examples show that the ensemble object need not be a set of simultaneously queried predictors. It may instead be a set of candidate alignments or synthetic datasets produced in parallel, with aggregation delayed until filtering or downstream prediction.

## 5. Diversity, ceilings, and calibration pathologies

The effectiveness of parallel ensembling depends less on the mere number of constituents than on the diversity of their errors or samples. In the DP-synthetic-data setting, the stated rationale is that independently noised datasets increase sample diversity: if synthetic datasets are viewed as draws from distributions $Q_i$, their mixture $\bar Q=\frac1k\sum_i Q_i$ has support that is strictly larger and empirical covariance
$$
\mathrm{Var}_{\bar Q}[x]=\frac1k\sum_i \mathrm{Var}_{Q_i}[x]+\frac1k\sum_i(\mu_i-\bar\mu)(\mu_i-\bar\mu)^\top
$$
that exceeds that of any single $Q_i$. Empirically, however, this benefit appears mechanism-dependent: gains are reported for GAN-based DP mechanisms, whereas MST, MWEM, and GEM show accuracies within $\pm0.005$ of the single-dataset baseline and no significant ECE improvements [2310.09729].

A complementary negative result is given for tabular foundation models. Across six TFMs on $153$ OpenML classification tasks, the mean pairwise Q-statistic is $0.961$ with $\sigma=0.183$, indicating near-perfect agreement in successes and failures. Under this high-consensus regime, the best ensemble, two-level cascade stacking, reaches $0.882$ accuracy, only $+0.18\%$ over the strongest single TFM, at $178.5$ seconds fit time versus $0.7$ seconds for TabICLv2, a $253\times$ compute increase. A Friedman test gives $\chi^2=389.95,p<10^{-30}$ and Nemenyi critical difference $1.347$, placing Cascade\_2level, Stacking\_LR, Greedy\_Selection, and TabICLv2 in one top equivalence group [2605.18696].

Calibration can also degrade even when 0/1 accuracy remains competitive. In the same TFM study, logistic-regression stacking has competitive accuracy and ROC-AUC but the worst log-loss rank among the ensembles, and its ECE is $0.0272$ versus $0.0236$ for TabICLv2. Temperature-Scaled Blending exhibits a similar pattern with ECE $0.0273$. The reported interpretation is that the meta-learner sharpens class boundaries, improving hard decisions while inflating confidence [2605.18696].

Vision ensembles display a milder version of the same principle through diminishing returns in $k$: additional members yield smaller marginal gains, and beyond a certain ensemble size the FLOP cost overtakes the accuracy benefit. This suggests that parallel ensembling is bounded both statistically, by diversity ceilings, and operationally, by communication and compute overhead [2005.00570].

## 6. Parameter-space composition, uncertainty, and operational consequences

A distinct line of work treats parallel ensembling as composition in parameter space rather than aggregation of independently materialized predictions. Tangent Model Composition fine-tunes tangent components $\delta_i$ independently on disjoint datasets $D_i$ and combines them through $\theta_0+\sum_i \alpha_i\delta_i$. Standard ensembling of $N$ non-linear fine-tuned models requires $O(N\cdot C)$ inference cost, whereas TMC is reported as $O(C)=O(1\cdot C)$ because all Jacobian-vector products can be batched or computed in one augmented pass. Empirically, this yields a $2.5\times$–$10\times$ reduction in inference time for ensembles of $5$–$20$ models, with an approximately $4.2$ percentage-point accuracy improvement over non-linear softmax/logit ensembling on $25$ class-incremental experiments. Because components live in a vector space, forgetting is implemented by setting $\alpha_i=0$, leaving no residual effect from the removed task [2307.08114].

Anchored ensembling gives another parallel interpretation, this time for approximate Bayesian inference. Instead of regularizing every ensemble member toward the same prior mean, each member draws an anchor $\theta_{0j}\sim p(\theta)$ and minimizes
$$
L(\theta;\mathcal D)+\tfrac12(\theta-\theta_{0j})^\top\Sigma_p^{-1}(\theta-\theta_{0j}).
$$
In the linear-Gaussian analysis, the anchored MAP solution has the correct posterior mean but covariance $\Sigma_{\mathrm{post}}\Sigma_p^{-1}\Sigma_{\mathrm{post}}$, which underestimates marginal variances and overestimates correlations except in two special cases. Empirically, anchored ensembles are reported to outperform standard ensembles in uncertainty-sensitive settings and to be competitive with variational methods [1810.05546].

Operationally, these two approaches expand the meaning of parallel ensembling. TMC emphasizes parallel fine-tuning with single-model inference and zero-cost unlearning; anchored ensembling emphasizes embarrassingly parallel training with uncertainty aggregation at prediction time. This suggests that the field’s central question is not simply how to average outputs, but how to choose an aggregation space in which independence across members can be exploited without erasing the information that makes ensembling useful.

Parallel ensembling therefore occupies a broad methodological spectrum. At one extreme are explicit output-level averages and votes; at another are stochastic or search-based token-level schemes for autoregressive models; at another are parameter-space compositions and privacy-budgeted parallel data generators. Across these settings, the literature is consistent on one point: parallel execution alone does not guarantee improvement. Gains are strongest when the ensemble preserves genuinely complementary structure—across errors, vocabularies, representations, tasks, or synthetic-data modes—and weakest when the constituent pool is already near-redundant [2605.00419][2605.18696].

Source: https://www.emergentmind.com/topics/parallel-ensembling