---
title: Probability-Level Fusion in EEND Systems
url: https://www.emergentmind.com/topics/probability-level-fusion-of-eend-systems
type: topic
---

# Probability-Level Fusion in EEND Systems

Probability-level fusion of End-to-End Neural Diarization (EEND) systems refers to the principled combination of multiple EEND model outputs at the level of frame-wise soft posteriors, rather than aggregating hard segment-level decisions. This approach leverages the probabilistic confidence scores produced by neural diarization models, enabling sophisticated fusion and calibration schemes that benefit from the diversity and complementary strengths of various system architectures, input features, and training regimes. Probability-level fusion frameworks accommodate calibration techniques, such as Platt scaling and risk-profiling with generalized scoring rules, to yield improved Diarization Error Rate (DER) and produce well-calibrated confidence estimates for downstream applications [2511.22696, 1105.5594].

## 1. Formal Problem Setting and Output Representations

Probability-level fusion aims to combine $M$ EEND systems, each producing, at each frame $t=1,\ldots,T$, either:

- A multilabel posterior $\mathbf{p}_m^{(\text{Mult})}(t) = [p_{m,1}(t),\ldots,p_{m,S}(t)] \in [0,1]^S$, where $S$ is the number of speakers and $p_{m,s}(t)$ is the probability that speaker $s$ is active in frame $t$ under model $m$.
- A powerset posterior $\mathbf{p}_m^{(\text{Power})}(t) = [p_{m,c_1}(t),\ldots,p_{m,c_K}(t)] \in [0,1]^K$, with $K=2^S$ and each $c_k\subseteq\{1,\ldots,S\}$ denoting a unique subset of active speakers.

Fusion seeks an operator $g(\cdot;\theta)$, parameterized (possibly) by $\theta$, to aggregate $\{\mathbf{p}_m^{(\cdot)}(t)\}_{m=1}^M$ so as to minimize a diarization loss (e.g., frame-wise cross-entropy or DER) on held-out development data [2511.22696]. Output representations determine subsequent calibration and fusion steps; the powerset formulation models inter-speaker dependencies explicitly, while multilabel treats speakers independently.

## 2. Probability-Level Fusion Frameworks

Fusion at the probability level exploits both classical and modern statistical frameworks. Two major paradigms are in use:

**A. Generalized Mean (α-β) Fusion**  
The two-parameter fusion method [1105.5594] unifies smoothing and correlation-adjusted combination:

$$
M_\alpha(t,c) = \left(\frac{1}{N}\sum_{i=1}^{N} p_i(t,c)^\alpha\right)^{\frac{1}{\alpha}}
$$

where $N$ is the number of streams and $\alpha$ controls smoothing: $\alpha>0$ sharpens toward maxima, $\alpha<0$ biases toward minima, $\alpha\to0$ yields the geometric mean. An additional correlation exponent $\beta\in[0,1]$ interprets $N^\beta$ as the effective number of independent samples. The fused unnormalized score is:

$$
S(t,c) = [M_\alpha(t,c)]^{N^\beta} = \left(\frac{1}{N}\sum_{i=1}^N p_i(t,c)^\alpha\right)^{N^\beta/\alpha}
$$

Normalized to yield fused probabilities:

$$
p_\text{fused}(t,c) = \frac{S(t,c)}{\sum_{c'} S(t,c')}
$$

**B. Ensemble Fusion and Calibration**  
Recent approaches [2511.22696] consider multiple unsupervised and supervised fusion techniques, including:

- Average probabilities: $p_\text{fused}(t) = \frac{1}{M}\sum_m p_m(t)$
- Average logits: transform logits via activation (sigmoid or softmax) post-averaging
- Dynamic logits: weight each model by average logit scale
- Entropy-based weighting
- Supervised metalearning: learn a weighted linear classifier over concatenated logits to minimize cross-entropy

All schemes are compatible with both multilabel and powerset representations.

## 3. Calibration and Risk-Profiling

Accurate fusion must address miscalibration of the underlying systems. Platt scaling, a logistic regression-based post-hoc calibration, is employed:

- **Independent multilabel calibration:** Each speaker's output is calibrated separately as $p_i^{cal}(t) = \sigma(\alpha_i \log p_i(t) + \beta_i)$
- **Joint calibration:** All speakers (or powerset components) are calibrated via a joint affine transformation followed by logistic or softmax activation [2511.22696].

Additionally, risk profiling via Tsallis coupled-surprisal [1105.5594] employs the deformed logarithm:

$$
\ln_k(x) = \frac{x^k - 1}{k},\quad S_k(p) = -\ln_k(p) = \frac{1 - p^k}{k}
$$

The average coupled-surprisal over $T$ frames for true labels $c_{true}(t)$ is

$$
\bar S_k = \frac{1}{T}\sum_{t=1}^T S_k(p_\text{fused}(t, c_{true}))
$$

An effective probability is then defined via the inverse deformed exponential:

$$
p_\text{eff} = [1 - k\bar S_k]^{1/k} = \left(\frac{1}{T}\sum_{t=1}^T p_\text{fused}(t,c_{true})^k\right)^{1/k}
$$

By varying $k$, one can evaluate decisiveness ($k>0$), neutrality ($k=0$), or robustness ($k<0$) in the fused stream.

## 4. Comparative Empirical Results

Extensive benchmarking on the CallHome dataset with three EEND-EDA systems (distinct input features), both with and without fine-tuning, shows:

- Proper powerset joint calibration yields up to 19% relative DER reduction for non-fine-tuned models; calibration can mitigate lack of domain adaptation—calibrated non-finetuned MFB achieves 8.397% DER compared to uncalibrated fine-tuned 8.236% [2511.22696].
- Joint calibration outperforms independent calibration, especially in multilabel space (e.g., up to 30% relative DER drop for ECAPA).
- Fusion via dynamic logits, particularly in a "fuse-then-calibrate" (F→C) pipeline, surpasses segment-level voting schemes such as DOVER-Lap in terms of DER (e.g., Dynamic Logits F→C + FT achieves DER 6.543% vs 6.910% for DOVER-Lap).
- Calibration in the powerset space offers substantial gains for individual models (MFB DER 10.874% → 8.397%), though multilabel calibration may harm single-system performance.
- Error analysis indicates calibration reduces false alarms more than it increases misses. Fusion reduces speaker confusion, harnessing complementary system strengths.

A summary of best configurations and key metrics:

| Method                  | DER (No FT) | DER (FT) | BCE (No FT) | BCE (FT) |
|-------------------------|-------------|----------|-------------|----------|
| Dynamic Logits F→C      |   7.458     |  6.543   |   0.239     |  0.217   |
| DOVER-Lap Baseline      |   7.940     |  6.910   |     —       |    —     |

## 5. Guidelines and Practical Recommendations

From systematic analysis, best practices for probability-level EEND system fusion include [2511.22696, 1105.5594]:

1. Prefer powerset output representations with joint calibration, to exploit inter-speaker dependencies and optimize calibration.
2. Adopt "fuse-then-calibrate" processing order (F→C), requiring only a single calibration model and yielding superior DER and computational efficiency.
3. Use dynamic logits fusion for most robust gains; this scheme weights models by logit scale, then applies a final nonlinearity.
4. Always calibrate in the powerset space, even if subsequent fusion or evaluation is performed in multilabel.
5. Evaluate calibration quality via proper scoring rules (e.g., binary cross-entropy) as well as DER to prevent misaligned improvements.
6. Use a held-out calibration set drawn from the target domain; calibration may substitute for fine-tuning in low-data regimes.
7. Apply median filtering to fused probabilities and maintain a consistent decision threshold (commonly 0.5), optionally using decision-theoretic thresholding on calibrated probabilities.
8. Probability-level soft fusion and calibration supersede the need for hard segment-level schemes such as DOVER-Lap, enabling more flexible downstream applications.

## 6. Theoretical Underpinnings: Risk, Correlation, and Scoring Rules

The α–β fusion framework and Tsallis coupled-surprisal provide an interpretive bridge between fusion parameterization and algorithm risk bias [1105.5594]:

- α controls smoothing/sharpening of fused posteriors; typical EEND fusion benefits from α ∈ [0.2, 0.6].
- β parameterizes correlation between systems, with β ≈ 0.5–0.8 reflecting partial dependency due to shared architectures or features.
- Risk profiling with parameter $k$ enables evaluation of accuracy/robustness trade-offs: $k > 0$ for decisiveness, $k < 0$ for robustness.
- Minimizing average coupled-surprisal $S_k$ is strictly proper for all $k$, resulting in a scoring rule family continuous with log-loss at $k=0$.
- Effective probability $p_\text{eff}$ quantifies ensemble's true-class confidence under selected risk profile.

## 7. Significance, Limitations, and Implications

Probability-level fusion of EEND systems overcomes limitations of segment-level majority voting methods—such as DOVER-Lap—by fully leveraging soft confidences and enabling model calibration. The integration of joint powerset calibration, dynamic logit fusion, and risk-profiling with generalized scoring rules results in superior diarization performance and better-calibrated confidence estimates, which are essential for applications that depend on probabilistic outputs.

A plausible implication is that the combination of these methods constitutes a new baseline for EEND system ensembles, since gains are observed even in the absence of fine-tuning. The adoption of calibration as an essential component, rather than a post-hoc adjustment, marks a methodological advance in speaker diarization. However, full independence of base models is rarely achieved in practice, so proper modeling of inter-system correlation via the β exponent or analogous strategies remains critical.

Further research may evaluate the extensibility of these frameworks to multi-speaker and open-domain diarization tasks, and examine the comparative robustness under highly mismatched input conditions.

Source: https://www.emergentmind.com/topics/probability-level-fusion-of-eend-systems