Papers
Topics
Authors
Recent
Search
2000 character limit reached

Label-Free Score Fusion

Updated 6 July 2026
  • Label-free score fusion is a method that combines heterogeneous outputs without relying on ground-truth labels, addressing calibration and reliability challenges.
  • Techniques range from strict zero-label estimation to test-time label-agnostic and tuning-based methods, each managing score commensuration differently.
  • Empirical evidence shows that these fusion approaches can match or surpass supervised baselines by leveraging normalization, latent structure estimation, and careful dependence modeling.

Label-free score fusion is the combination of multiple score streams into a single decision statistic without using ground-truth labels to estimate the fusion rule itself. The surveyed literature indicates that the term is used in several distinct senses: strictly zero-label estimation, test-time label-agnostic deployment after supervised calibration, and training-free but validation-tuned interpolation. Across biometrics, retrieval, object detection, vision-language recognition, image quality assessment, and LLM verification, the recurring technical problem is score commensuration: heterogeneous systems produce outputs on different scales, with different dependence structures and failure modes, so fusion quality depends at least as much on calibration and reliability modeling as on the final algebraic combiner (Lee et al., 20 Apr 2026, Bacellar, 30 Mar 2026).

1. Terminological scope and taxonomy

The surveyed work supports a strict distinction between label-free, training-free, and test-time label-agnostic fusion. In the strictest sense, a method is label-free only if it estimates fusion behavior without any ground-truth correctness labels, same/different labels, or development-set relevance labels. FUSE is explicit on this point: it performs verifier ensembling with “zero ground truth labels” by estimating verifier qualities from unlabeled score matrices (Lee et al., 20 Apr 2026). SUEL likewise operates on unlabeled continuous predictor scores and estimates both predictor ranking and fusion weights without ground truth (Afshar et al., 2024). The deep MAP IQA framework also fits its fusion model without MOS or other human labels, treating multiple IQA scores as noisy observations of a latent perceptual-quality variable (Wang et al., 28 May 2026).

A second category is label-free only in a narrower operational sense. PhaseGraph calibrates graph and vector scores to a common percentile-based scale without relevance labels, but the mixture weight and pool settings are chosen on tune splits (Bacellar, 30 Mar 2026). The conversational-memory retrieval study is explicitly “training-free,” yet its interpolation weight is selected by leave-one-conversation-out validation, so it is not strictly label-free (Lysenstøen, 2 Jun 2026). ACT in FusionAgent fuses scores for a test query without test labels, but it is embedded in an agent-selection framework trained with supervised rewards (Zhu et al., 27 Mar 2026). DBF similarly performs automatic test-time fusion from detector outputs, but its precision–recall confidence model is built from labeled validation data (Lee et al., 2022).

A third category comprises methods that are not label-free even if the deployed combiner is simple. Morrison’s logistic-regression calibration and fusion requires labeled same-origin and different-origin comparisons throughout parameter estimation (Morrison, 2021). The face–ECG hybrid identification method computes per-subject modality weights from labeled training folds, so it is “not truly label-free” despite its simple algebraic fusion rule at test time (Truong et al., 2020).

Category Representative papers Label status
Strict zero-label estimation FUSE (Lee et al., 20 Apr 2026), SUEL (Afshar et al., 2024), deep MAP IQA (Wang et al., 28 May 2026) No ground-truth labels used to estimate fusion
Label-free calibration with tuned fusion PhaseGraph (Bacellar, 30 Mar 2026), lexical–dense fusion (Lysenstøen, 2 Jun 2026) Calibration is score-distribution based; fusion weights are tune-set selected
Test-time label-agnostic fusion after supervised setup DBF (Lee et al., 2022), ACT (Zhu et al., 27 Mar 2026) No test labels needed, but labeled training or validation is required
Supervised score fusion Logistic-regression fusion (Morrison, 2021), face–ECG hybrid (Truong et al., 2020) Fusion parameters depend on labeled data

This taxonomy suggests that “label-free score fusion” is not a single methodological family. It is better understood as a spectrum defined by where labels enter: nowhere, only in offline tuning, or directly in fusion-model estimation.

2. Problem formulations and fusion objects

The object being fused varies substantially across application domains. In LLM verification, FUSE assumes a generator produces NN candidate responses r1,,rNr_1,\dots,r_N for a query qq, and mm verifiers produce a score matrix

V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),

with unknown latent correctness labels yi{±1}y_i\in\{\pm 1\} (Lee et al., 20 Apr 2026). Fusion is therefore candidate ranking under latent binary correctness.

In heterogeneous retrieval, the fusion objects are scalar retrieval scores. PhaseGraph combines vector-retrieval scores sivs_i^v and graph-retrieval scores sigs_i^g for the same document, treating graph–vector fusion as a score-calibration problem rather than a purely combinatorial one (Bacellar, 30 Mar 2026). The conversational-memory study similarly fuses a session-level BM25 score with a dense late-interaction session score after within-candidate-set normalization (Lysenstøen, 2 Jun 2026).

In zero-shot multi-label recognition, SPARC fuses singleton prompt scores sits_i^t with order statistics of compound-prompt scores {spt:iC(p)}\{\overline{s}_p^t : i\in C(p)\} to refine per-class rankings (Miller et al., 24 Feb 2025). In multimodal biometrics, the face–ECG hybrid method does not fuse scalar matcher outputs but two heterogeneous 87-dimensional class-score vectors, one for face and one for ECG, and then decides by

r1,,rNr_1,\dots,r_N0

so the fusion target is a multiclass confidence vector rather than a single verification score (Truong et al., 2020).

In unsupervised IQA score fusion, the fused quantity is a latent scalar quality r1,,rNr_1,\dots,r_N1, with observed model scores

r1,,rNr_1,\dots,r_N2

modeled as noisy observations of that latent variable (Wang et al., 28 May 2026). In SUEL, the fused output is again a scalar meta-score,

r1,,rNr_1,\dots,r_N3

but the inputs are arbitrary continuous predictor scores rather than calibrated match or retrieval scores (Afshar et al., 2024).

This diversity matters because label-free fusion cannot be reduced to one canonical formula. The same term covers at least four technically distinct settings: latent-class verification, score calibration for retrieval, class-wise ranking refinement, and latent-variable estimation from multiple regressors.

3. Principal methodological families

One family centers on distributional commensuration. PhaseGraph maps each score source to percentile rank,

r1,,rNr_1,\dots,r_N4

so vector and graph scores become comparable on a unit-free scale before fusion (Bacellar, 30 Mar 2026). SPARC performs two-stage standardization: first within image across prompts, then across images for each prompt, specifically to remove image-level and prompt-level biases before adaptive fusion (Miller et al., 24 Feb 2025). ACT uses per-query Z-score normalization,

r1,,rNr_1,\dots,r_N5

to turn each model’s score vector into a confidence-like signal before anchor-based fusion (Zhu et al., 27 Mar 2026). These methods differ in application, but all treat score comparability as the primary obstacle.

A second family uses unlabeled latent-structure estimation. FUSE searches for score transformations that reduce empirical triplet conditional-independence violations, then uses spectral moment estimation to recover verifier sensitivities and specificities without correctness labels (Lee et al., 20 Apr 2026). SUEL replaces independence assumptions by a latent-group model: predictors are noisy perturbations of a smaller number of latent score sources, and fusion weights are estimated from the covariance structure of continuous unlabeled scores (Afshar et al., 2024). The IQA MAP method posits a latent quality variable and model-specific observation channels with heteroscedastic skew-normal noise, so fusion becomes latent-variable inference rather than rule-based averaging (Wang et al., 28 May 2026).

A third family uses training-free or weakly tuned arithmetic fusion. The conversational-memory study fuses BM25 and dense late-interaction scores by weighted interpolation after r1,,rNr_1,\dots,r_N6-normalization within the candidate set, using a single leave-one-conversation-out scalar weight (Lysenstøen, 2 Jun 2026). The biometric study on fingerprint and finger-vein compares min, max, simple sum, and user weighting after score normalization, reporting the best result for hyperbolic-tangent normalization plus simple sum (Vishi et al., 2018). These methods are operationally simple, but their status as label-free depends on whether normalization or weighting parameters were estimated with labels.

A fourth family is quality- or consensus-conditioned fusion. The BioSecure benchmark showed that top-performing systems under cross-device mismatch were those that exploited quality measures to condition fusion (Poh et al., 2021). CCS is adjacent rather than identical to prediction fusion: it fuses agreement across test-time augmentations into a deployment-time reliability score,

r1,,rNr_1,\dots,r_N7

and is explicitly a label-free monitoring metric rather than a final detector-output combiner (Manoharan et al., 16 Sep 2025).

4. Representative formulations

PhaseGraph provides a concise example of label-free calibration followed by fusion. After percentile-rank normalization, scores are transformed to energies

r1,,rNr_1,\dots,r_N8

then to Boltzmann probabilities

r1,,rNr_1,\dots,r_N9

and fused as

qq0

The paper’s main conclusion is that percentile-based commensuration is the robust design choice, while the exact post-calibration operator matters less (Bacellar, 30 Mar 2026).

SPARC is a different label-free construction. For class qq1, it forms order statistics qq2 of debiased compound-prompt scores and learns an unsupervised fusion direction by maximizing variance across images: qq3

qq4

followed by

qq5

The paper’s ablations show that the first maximum compound score is often inferior to weaker order statistics because compound prompts behave mainly like an OR gate with an AND bonus (Miller et al., 24 Feb 2025).

FUSE represents the most explicit zero-label ensembling formulation. It binarizes or otherwise monotonically transforms verifier scores by choosing

qq6

where qq7 measures empirical triplet conditional-independence violation, then estimates triplet-based correctness posteriors and fits a final ensemble by

qq8

Its distinctive feature is that dependency control is performed without labels, by optimizing score transformations rather than learning from correctness annotations (Lee et al., 20 Apr 2026).

SUEL gives the most direct unsupervised linear fusion rule for continuous scores: qq9 The weights are inferred from a structured covariance model,

mm0

or equivalently

mm1

where latent groups explain predictor dependence (Afshar et al., 2024).

The IQA MAP framework is the clearest latent-variable formulation. Each observed score is modeled as

mm2

with score-dependent uncertainty mm3 and final fused score approximated by an encoder

mm4

The system is trained by maximizing the posterior of mm5 under this observation model without MOS labels (Wang et al., 28 May 2026).

5. Empirical evidence across domains

Zero-label fusion can be competitive with supervised or semi-supervised baselines when the latent-structure assumptions are adequate. FUSE reports strong results on multiple best-of-mm6 reasoning benchmarks. On Humanity’s Last Exam, for best-of-50 selection, Pass@1 is mm7, Naive Ensemble is mm8, Oracle Best Verifier is mm9, Logistic Regression is V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),0, WEAVER is V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),1, and FUSE reaches V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),2 (Lee et al., 20 Apr 2026). On 70B-generator GPQA Diamond, FUSE improves over Naive Ensemble from V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),3 to V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),4, essentially matching or slightly exceeding WEAVER at V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),5 (Lee et al., 20 Apr 2026).

In heterogeneous retrieval, label-free calibration also yields measurable gains. PhaseGraph improves held-out LastHop@5 from V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),6 to V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),7 on MuSiQue and from V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),8 to V=(vi,j)i=1,,N;j=1,,m,vi,j=vj(q,ri),V = (v_{i,j})_{i=1,\dots,N;\,j=1,\dots,m}, \qquad v_{i,j}=v_j(q,r_i),9 on 2WikiMultiHopQA, both on independent held-out test splits (Bacellar, 30 Mar 2026). The same paper’s ablation shows that percentile-based calibration is directionally more robust than min-max normalization, and that linear fusion after calibration performs comparably to Boltzmann weighting (Bacellar, 30 Mar 2026).

SPARC shows that zero-shot, training-free score fusion can materially improve multi-label ranking. Averaged over nine CLIP backbones, vanilla ZSCLIP rises from yi{±1}y_i\in\{\pm 1\}0 to yi{±1}y_i\in\{\pm 1\}1 on COCO, from yi{±1}y_i\in\{\pm 1\}2 to yi{±1}y_i\in\{\pm 1\}3 on VOC, and from yi{±1}y_i\in\{\pm 1\}4 to yi{±1}y_i\in\{\pm 1\}5 on NUSWIDE when SPARC’s debiasing and adaptive fusion are applied (Miller et al., 24 Feb 2025). The same study reports that debiasing alone raises average performance from yi{±1}y_i\in\{\pm 1\}6 to yi{±1}y_i\in\{\pm 1\}7, which suggests that score commensuration is a major part of the gain (Miller et al., 24 Feb 2025).

The IQA MAP method reports average SRCC yi{±1}y_i\in\{\pm 1\}8 and PLCC yi{±1}y_i\in\{\pm 1\}9 for its score-fusion variant with model- and score-level uncertainty, improving over individual IQA models and over unsupervised rank-fusion baselines (Wang et al., 28 May 2026). When two deliberately bad random-score models are added, its performance remains essentially stable, whereas RRF and RRFW degrade sharply, which the paper attributes to uncertainty-driven suppression of inconsistent models (Wang et al., 28 May 2026).

Training-free arithmetic fusion can also be effective, though not uniformly. In conversational-memory retrieval, fusing BM25 with dense late interaction raises LoCoMo Hit@1 for e5-large-v2 from sivs_i^v0 to sivs_i^v1, with NDCG@5 reaching sivs_i^v2 (Lysenstøen, 2 Jun 2026). The same paper reports that on LongMemEval-S, a lexical-overlap-heavy regime, the net fusion gain over BM25 on R@1 is only sivs_i^v3 percentage points, with 95% CI sivs_i^v4 and sivs_i^v5, so the gain is small and not statistically significant (Lysenstøen, 2 Jun 2026). This suggests that the value of label-free or weakly tuned fusion is regime-dependent rather than universal.

6. Limitations, misconceptions, and adjacent directions

A persistent misconception is that any simple algebraic combiner is label-free. The surveyed work shows otherwise. The face–ECG hybrid method computes a class-dependent weighted sum at test time, yet its weights come from labeled per-subject training behavior (Truong et al., 2020). Morrison’s logistic-regression fusion is explicitly supervised, requiring same-origin and different-origin labels for both calibration and fusion (Morrison, 2021). DBF is label-free only at deployment; it still requires labeled validation data to convert detector scores into belief masses (Lee et al., 2022).

A second misconception is that fusion quality depends mainly on the final operator. Several papers point in the opposite direction. PhaseGraph argues that once vector and graph scores are brought to a common percentile scale, the exact post-calibration operator matters less (Bacellar, 30 Mar 2026). SPARC’s ablations show that naive maxima are often suboptimal unless singleton and compound scores are first debiased (Miller et al., 24 Feb 2025). ACT’s ablation reports that Z-score normalization materially outperforms no normalization or min-max normalization on LTCC, especially in FNIR (Zhu et al., 27 Mar 2026). These results suggest that the main design burden in label-free fusion is often commensuration rather than aggregation.

Dependence and redundancy are also central. FUSE was motivated by the failure of prior spectral methods under strong conditional correlations between verifiers (Lee et al., 20 Apr 2026). SUEL likewise assumes that predictors are dependent, but explains this dependence through latent groups rather than ignoring it (Afshar et al., 2024). A plausible implication is that future label-free fusion systems will increasingly combine commensuration with explicit dependence control rather than relying on independence assumptions.

Operational robustness remains unresolved. The BioSecure benchmark showed that quality-aware systems are best under device mismatch, and that sequential methods are especially stable under missing scores (Poh et al., 2021). This indicates that label-free fusion in deployment cannot be treated as a score-only problem; quality indicators, missingness patterns, and acquisition cost are integral to realistic fusion. CCS reinforces this point from a different angle: it uses unlabeled agreement across augmentations as a reliability proxy and is intended for deployment-time monitoring, not final prediction fusion (Manoharan et al., 16 Sep 2025). This suggests an adjacent research direction in which consensus scores, quality measures, and label-free fusion are combined rather than studied separately.

The literature therefore supports a narrow but technically meaningful definition of label-free score fusion: unlabeled estimation of a fused score from heterogeneous sources, with explicit attention to commensuration, dependence, and reliability. The strongest current examples are zero-label verifier ensembling, covariance-structured unsupervised predictor fusion, latent MAP estimation over score channels, and score-distribution-based calibration. The main remaining gap is end-to-end elimination of tune-set labels without sacrificing robustness under domain shift, missing data, or heterogeneous score scales.

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 Label-Free Score Fusion.