Model-Independent Data Aggregation
- Model-independent data aggregation is a design principle that fuses predictions, parameters, distributions, or summary statistics without requiring joint retraining on raw data.
- It employs varied techniques—such as covariance-weighted black-box ensembles, unsupervised CDF transforms, and Bayesian parameter matching—to adapt aggregation methods to data-sharing constraints.
- This approach enhances robustness in risk evaluation and treatment-effect estimation while preserving privacy and reducing computational overhead.
Searching arXiv for the cited papers to ground the article in current arXiv records. Model-independent data aggregation denotes a class of aggregation procedures that combine multiple information sources without requiring intrusive access to a shared internal model form. In the recent arXiv literature, the aggregated objects include black-box predictors, unlabeled input variables, local parameter sets learned on sequestered datasets, families of loss distributions, and study-level summary statistics. The unifying feature is that aggregation is carried out at the level of predictions, ranks, parameters, distributions, or sufficient statistics rather than by retraining a single pooled model on raw data (Bourdais et al., 2024, Ulan et al., 2021, Yurochkin et al., 2019, Mao et al., 2022, Panigrahi et al., 2022).
1. Scope and formal viewpoints
The phrase model-independent is used in several closely related but technically distinct senses. In black-box ensemble construction, it means that the contributing models are treated as functions whose internal structure is irrelevant to aggregation. In unsupervised aggregation, it means that the aggregation rule is learned without access to ground-truth labels. In parameter-matching frameworks, it means that independently trained local models can be fused through their parameterizations rather than through a common training pipeline. In robust risk evaluation, it means that one aggregates an uncertainty set of distributions into a robust cdf that is independent of any specific risk measure. In privacy-sensitive treatment-effect estimation, it means that only summary statistics are shared, so raw records remain local (Bourdais et al., 2024, Ulan et al., 2021, Yurochkin et al., 2019, Mao et al., 2022, Panigrahi et al., 2022).
| Setting | Aggregated object | Characteristic mechanism |
|---|---|---|
| Black-box prediction aggregation | Minimal empirical variance estimation | |
| Unsupervised aggregation | from transformed variables | Empirical CDF transforms with entropy and dependency weights |
| Statistical parameter aggregation | Local parameters | Beta-process/Bernoulli-process matching into global atoms |
| Risk-model aggregation | Uncertainty set of cdf’s | Robust cdf under stochastic dominance |
| Efficient data aggregation | Per-study summaries | Data carving and pooled unbiased estimation of |
A plausible implication is that model-independent data aggregation is not a single algorithmic family but a design principle: the aggregation operator is chosen to match the object being fused and the information-sharing constraints under which fusion must occur.
2. Black-box predictor aggregation via minimal variance
The framework introduced in "Minimal Variance Model Aggregation: A principled, non-intrusive, and versatile integration of black box models" defines aggregation for predictors through a linear ensemble
0
with weights satisfying 1 and often 2. Two optimization principles are distinguished. Minimal Error Aggregation (MEA) minimizes empirical squared error on held-out data:
3
In the unconstrained case, if 4 is the 5 matrix with entries 6, then
7
The paper notes that 8 may be ill-conditioned when models are collinear or 9, so direct inversion overfits and yields large, unstable weights (Bourdais et al., 2024).
Minimal Variance Aggregation (MVA) instead assumes unbiased models of the form
0
and minimizes the variance of an unbiased linear combination:
1
The Lagrangian calculation gives the closed form
2
No positivity constraint is needed; negative weights appear only if 3 has strong negative correlations. The core claim of Minimal Empirical Variance Aggregation (MEVA) is that estimating 4 and then inverting it is statistically more robust than estimating 5 directly by least squares. Under bounded moments and a spectral gap in 6, the empirical MEA weight has 7 fluctuations, whereas the empirical MVA weight derived from 8 has 9 fluctuations around 0 (Bourdais et al., 2024).
Practical estimation proceeds by estimating 1 either diagonally or as a full matrix. In the diagonal approximation,
2
so the weights satisfy 3. In the full-matrix approach, one computes residuals 4, forms the empirical covariance
5
diagonalizes 6, and fits smooth log-eigen-value functions through kernel/RKHS regression. For a new 7, the inverse covariance estimate is reconstructed by
8
followed by
9
The paper explicitly recommends shrinkage or Tikhonov regularization by adding 0 when 1 is nearly singular (Bourdais et al., 2024).
Empirical evaluation spans both data science and PDE settings. On Boston Housing 2, aggregating six off-the-shelf regressors, MEVA via GP-shrinkage reduced MAE by 3–4 over the best single model, whereas MEEA overfit and performed worse. For the Laplace equation, six classical PDE solvers plus one GP-PDE solver were aggregated; with FNO used to learn 5, MEVA achieved a geometric mean test error of 6 in 7 versus 8 for the best FEM. For Burgers’ equation, with seven solvers, the geometric mean 9 improved from 0 for the best single solver to 1 for the aggregate, and the method robustly switched away from diverging solvers near shocks. The framework’s stated limitations are that it requires held-out data to estimate 2, assumes unbiasedness, and offers no guarantee that the aggregate will dominate the single best model when models have identical errors (Bourdais et al., 2024).
3. Unsupervised aggregation from unlabeled data
"Aggregation as Unsupervised Learning and its Evaluation" formulates aggregation as learning a mapping
3
from unlabeled data, with the requirements that 4 preserve monotonicity and boundary conditions and be derived without access to any ground-truth 5. The method first transforms each variable through an empirical cumulative probability map and then computes weights that trade off entropy against redundancy. For variable 6 and instance 7,
8
Thus 9 is the empirical CDF of variable 0, reversed when its direction is negative. By construction, 1 (Ulan et al., 2021).
Two partial weights are then computed. The entropy-based weight uses
2
where 3 is the empirical frequency of rank value 4. The dependency-based weight compares the variable-specific rank 5 to a joint rank 6 derived from the joint CDF
7
With 8,
9
The final unnormalized weight is 0, then normalized so that 1. Aggregation is performed either by a weighted sum,
2
or by a weighted product,
3
Because 4, 5, and each 6 is monotone into 7, the construction yields a monotone aggregator with 8 and 9 (Ulan et al., 2021).
The procedure has no iterative optimization; it is closed-form apart from sorting and frequency counting. Its complexity is dominated by sorting at 0 per variable and by Spearman rank-correlation computation at 1. Evaluation was performed on 169 regression datasets from the UCI Machine Learning Repository after filtering out non-numeric datasets, tasks with too few instances, and duplicates. Dataset sizes ranged from 60 to over 4 million instances, with 2 to 373 inputs. Ground truth was used only at evaluation time. External measures were Spearman’s 2 and Kendall’s 3 distance to the true ranking; internal measures were Kemeny distance to the inputs and Sensitivity, defined as the number of unique aggregate values divided by the number of unique input tuples (Ulan et al., 2021).
Median performance over the 169 datasets showed a marked separation between data-agnostic and data-driven methods. PROD and MIN each had median Spearman 4, MAX had 5, SUM had 6, WSM had 7, WPM had 8, and the supervised reference REG had 9. WPM also achieved Kendall 0 distance 1, Kemeny distance 2, and Sensitivity 3. The paper’s interpretation is that WPM and WSM outperform basic methods because they adapt to each variable’s scale and redundancy, the CDF transform spreads out congested value ranges, and the dependency weight down-weights variables whose information is already represented by others. The stated limitations are that the method only handles numeric, continuous features, assumes a global monotonic relationship among inputs and the latent target, and does not capture complex non-monotone interactions (Ulan et al., 2021).
4. Parameter matching across sequestered local models
"Statistical Model Aggregation via Parameter Matching" addresses aggregation when each site trains its own local model on a private or heterogeneous dataset and only local parameter estimates are available. Let 4 be the site-specific datasets, and let site 5 produce local parameters
6
The goal is to infer a shared global latent representation 7 of unknown size 8 and a binary assignment matrix 9 with 00 iff 01 is a noisy realization of global atom 02, so that the posterior 03 is maximized (Yurochkin et al., 2019).
The meta-model is Bayesian nonparametric. Global atoms are drawn from a Beta process prior,
04
each site selects a finite subset through a Bernoulli process,
05
and each local parameter is modeled as a noisy draw from its assigned global atom,
06
with 07 and 08 chosen from the exponential family. Marginalizing out 09 yields an Indian-Buffet-Process prior over the assignment structure. The inference scheme pursues a MAP estimate by alternating assignment updates and hyperparameter updates. For each site, holding the other assignments fixed, the local parameters are reassigned by solving a linear-sum-assignment problem with a cost matrix whose entries are differences in log-marginal-likelihood contributions for joining an existing atom versus creating a new one. The paper uses the Hungarian algorithm for this step and states that each assignment move monotonically increases the joint log-posterior. Hyperparameters 10 are then updated by maximizing a smooth objective, and global atoms are estimated from their assigned local parameters (Yurochkin et al., 2019).
The framework is specialized to three model families. For Gaussian topic models, the local parameters are topic centroids in embedding space, with Gaussian 11 and Gaussian 12. For HDP-HMMs, the local parameters are state-emission sufficient statistics in a Normal-Wishart family, and SPAHM matches local states across subjects while allowing the number of discovered states to vary by site. For sparse Gaussian processes, the local parameters are inducing-input/weight pairs, and matching yields a global set of shared inducing inputs and weights that can be dispatched to each local GP. The algorithmic complexity of each Hungarian step is 13, with total cost approximately 14, memory 15, and a local-model-training phase that is trivially parallelizable across sites (Yurochkin et al., 2019).
Empirical results are reported for simulated Gaussian mixtures, Gaussian topic models, sparse GPs, and motion capture. On the Gutenberg topic-model experiment, 40 books were summarized into 155 global topics; compared with Gaussian LDA with 150 topics, SPAHM achieved UCI coherence 16 versus 17, with runtime 18 versus approximately 19 for 100 MCMC iterations. In US temperature forecasting with 50 states and 50 inducing points per local sparse GP, SPAHM had slightly higher RMSE on self-prediction, 20 versus 21, but much better cross-state generalization, 22 versus 23. On MoCap sequences, local sticky HDP-HMMs with 9 and 13 states were matched into 14 global states, and SPAHM reached near-joint-HDP-HMM accuracy at less than half the compute time. The stated limitations are the need to choose exponential-family priors, sensitivity to hyperparameters controlling the degree of sharing, and the restriction that SPAHM does not split or merge within a site, so poor local partitions can propagate to the global matching (Yurochkin et al., 2019).
5. Aggregation of distributions for risk evaluation
Mao–Wang–Wu define model aggregation for prudent risk evaluation by aggregating an uncertainty set of univariate loss distributions into a single robust cdf. Given an uncertainty set
24
a partial order 25 such as first-order stochastic dominance 26 or increasing-convex order 27, and optionally a law-invariant 28-monotone risk functional 29, the Model-Aggregation (MA) approach first computes
30
the supremum of 31 under the chosen order, and then reports either 32 itself or 33 as the robust risk evaluation (Mao et al., 2022).
The paper gives explicit lattice-theoretic formulas. Under first-order stochastic dominance,
34
Under increasing-convex order,
35
where
36
and hence
37
This construction differs from classic worst-case risk evaluation because it produces not only a robust value of risk evaluation but also a robust distributional model, and does so independently of any specific risk measure (Mao et al., 2022).
For robust optimization, the objective becomes
38
where 39 is convex and 40 is convex in 41. Under standard assumptions, if 42 admits a finite Kusuoka form, then the MA robust optimization problem admits an extended linear or conic reformulation through the minimax representation of Expected Shortfall. The paper states that when 43 is generated by finitely many scenarios or by simple moment, box, or ellipsoid constraints, the resulting sup-expectations reduce to LP or SOCP subproblems (Mao et al., 2022).
Two uncertainty families admit explicit MA solutions. For a Wasserstein ball
44
the FSD supremum quantile 45 solves
46
while under ICX with 47 the paper gives
48
For the mean-variance uncertainty set
49
the MA approach yields explicit cdf forms 50 under FSD and 51 under ICX, from which
52
and
53
follow directly (Mao et al., 2022).
A further contribution is the equivalence analysis between worst-case risk and MA risk. Defining
54
the paper proves 55 by monotonicity and introduces convex-polytope MA-equivalence. Theorem 8 characterizes 56 as the unique risk functional on 57 that is translation-invariant, positively homogeneous, lower semicontinuous, and 58-cEMA. Theorem 9 analogously characterizes 59 under 60-cEMA. In rolling-window backtests on 20 stocks, WR and MA produced similar robust portfolios, and both outperformed SAA and Markowitz in Sharpe (Mao et al., 2022).
6. Summary-statistic aggregation and data carving for treatment effects
Panigrahi, Wang and He study data aggregation in a meta-analytic setting where the shared target is a treatment effect 61. There are 62 independent existing studies and a new validation study 63. In study 64, one observes outcomes 65, treatments 66, and high-dimensional covariates 67 under the linear model
68
where 69 is the true support with 70 and 71 is independent of 72. The validation study collects 73 on the union of selected variables 74. The goal is to construct an unbiased, efficient estimator of 75 by transmitting only summary statistics from each existing study to a central analyst (Panigrahi et al., 2022).
Each study first runs a LASSO regression,
76
with 77 and 78. The active set is 79, with 80. Rather than sharing raw data, study 81 reports the active set 82, the penalty weights 83, the sign vector 84, and the first- and second-moment summaries
85
The paper explicitly states that these are exactly the sufficient statistics for refitting the selected submodel by least squares (Panigrahi et al., 2022).
After collecting summaries, the central analyst computes validation-study summaries
86
and for each study forms the pooled covariance and pooled MLE
87
88
Without correction, 89 is biased because the same data were used for selection. The paper therefore uses data carving. It shows that the Karush–Kuhn–Tucker randomization map can be written so that 90 is asymptotically jointly Gaussian, and that the observed selection event
91
is equivalent to a set of affine inequalities in 92. By an exact-carving argument, the uniformly minimum variance unbiased estimator of 93, conditional on 94, is a Rao–Blackwellized conditional expectation. In practice, the paper uses a Laplace-type approximation and a small convex program in 95 to compute the carved estimator 96 (Panigrahi et al., 2022).
The final aggregated estimator is
97
or, as the paper notes, one may use weights proportional to 98. Under screening, exponential-moment, polyhedral-selection probability, and operator-norm control conditions, Theorem 3.1 gives
99
so 00 is asymptotically unbiased. Lemma 3.2 further quantifies a uniform variance gain over the split estimator that uses only the validation study. The privacy claim is explicit: each existing study shares only 01 numbers, raw records remain local, and the main extra computation is solving a convex program of complexity 02 (Panigrahi et al., 2022).
7. Cross-cutting assumptions, misconceptions, and limitations
Across these formulations, model-independent aggregation does not mean assumption-free aggregation. MEVA is non-intrusive and model-agnostic, but it requires held-out data and assumes unbiasedness of the constituent models. The unsupervised CDF-based method uses no ground truth, but it is limited to numeric, continuous features and assumes a global monotonic relationship. SPAHM is fully model-independent at the level of local models, yet it depends on exponential-family priors and on the quality of local partitions. The MA approach for risk evaluation is independent of any specific risk measure, but it is defined relative to a chosen stochastic order. The data-carving estimator preserves privacy by exchanging only summaries, but its guarantees require screening, selection-probability approximation, and operator-norm control (Bourdais et al., 2024, Ulan et al., 2021, Yurochkin et al., 2019, Mao et al., 2022, Panigrahi et al., 2022).
A common misconception is that aggregation is synonymous with averaging. The literature instead includes point-wise linear ensembles with covariance-derived weights, weighted products after empirical CDF transforms, Beta-Bernoulli parameter matching, stochastic-dominance suprema of cdf’s, and Rao–Blackwellized pooling of carved estimators. This suggests that model-independent data aggregation is better viewed as a family of interface-level combination rules whose mathematical form is dictated by the object being aggregated.
Another common misconception is that model-independent aggregation is necessarily unsupervised. One strand is explicitly unsupervised and label-free (Ulan et al., 2021), but other strands use held-out targets to estimate error covariance (Bourdais et al., 2024), use posterior matching over local parameter sets (Yurochkin et al., 2019), use uncertainty sets of distributions rather than labels (Mao et al., 2022), or use a validation study together with summary statistics to estimate a shared treatment effect (Panigrahi et al., 2022). The available evidence therefore supports a broader interpretation: the defining property is not the absence of supervision in every case, but the avoidance of intrusive joint retraining on raw, fully pooled data.