Submitted to IEEE SLT 2026

Not All Attacks are Learned
Equally in Speech Deepfake Detection

Abstract

Speech deepfake detection (SDD) models are trained on multi-attack datasets containing diverse spoofing systems, such as text-to-speech (TTS) and voice conversion (VC). In standard multi-attack training, all attacks are treated as one spoof class, and performance is reported using overall Equal Error Rate (EER). This aggregate view obscures how individual attacks shape learning and generalization. To better understand this attack-level behavior, we first balance TTS and VC exposure using sample and attack omission. We then measure attack-wise EER at inference and analyze attack-wise training loss and entropy-loss to characterize optimization. Results show that attacks contribute unequally: some attacks have high EER sensitivity and concentrated entropy with low loss, indicating strong influence on the decision boundary. We define these as high-impact attacks. To reduce uneven generalization across attacks, we propose a replay-regularized, attack-aware curriculum that stages exposure based on measured attack influence. Experiments on ASVspoof 2019, 2021, ASVspoof 5, and Fake-or-Real show improved overall robustness and reduced attack-level imbalance compared with standard multi-attack training.

Method

Impact Analysis

To test the hypothesis that attacks contribute unequally to learning, we apply two complementary diagnostics. Leave-two-attacks-out EER sensitivity measures how much overall EER shifts when an attack pair is withheld, directly quantifying each attack's influence on the decision boundary. Per-attack entropy-loss analysis reveals how confidently and efficiently the model learns each attack type. Together, these diagnostics are not just analytical tools. Their results directly define which attacks are high-impact and which are low-impact, and this partition drives our training framework.

Impact analysis

Figure 1. Impact analysis pipeline. EER sensitivity and entropy-loss analysis characterize high-impact vs. low-impact attacks.

Curriculum Training

Using the high-impact and low-impact partition identified above, we design a two-stage curriculum that stages attack exposure based on measured influence. Step 1 pretrains on low-impact attacks to build representations for harder-to-learn attack types. Step 2 adapts to high-impact attacks using a composite loss combining high-impact classification, replay regularization over a low-impact subset, knowledge distillation from a frozen teacher, and a contrastive objective. Code and pretrained models are available at github.com/attackbias-slt/Paper_Codes ↗.

Step 1: Low-Impact Pretraining Lstep1 = LCE(𝒟low)
Step 2: High-Impact Adaptation with Replay Lstep2 = αLhigh + αrLrep + βLKD + γLcon
Two-stage training

Figure 2. Two-stage curriculum training framework with frozen teacher, knowledge distillation, and replay regularization.

Results & Analysis

We report Equal Error Rate (EER %, ↓) for standard multi-attack training and impact-driven curriculum variants trained on ASVspoof 2019 LA.

EER Comparison Across Retraining Classes

Overall, VC, and TTS EER across leave-two-attacks-out conditions for all three models trained on ASVspoof 2019.

SSL-XLSR EER
SSL-XLSR
RawNet2 EER
RawNet2
AASIST EER
AASIST

Attack-wise Diagnostics

Per-attack loss and entropy-loss across leave-two-attacks-out training conditions.

ssl Balanced

Attacks included: A1, A2, A3, A4, A5, A6

High-Impact vs. Low-Impact Attacks

We use two diagnostics to characterize attack-level influence. Leave-two-attacks-out EER sensitivity measures how much overall EER changes when an attack pair is withheld from training. Entropy-loss measures output uncertainty per attack type at inference. Together, they dissociate training influence from representational confidence, exposing asymmetry that aggregate EER alone cannot reveal.

High-Impact Attacks
High EER sensitivity: omitting these causes large EER spikes, indicating strong dependence on their gradient signal
Concentrated entropy: confident, peaked outputs indicate well-learned discriminative representations
Low-Impact Attacks
Low EER sensitivity: omitting these has minimal effect on overall EER despite their presence in training
Diffused entropy: uncertain, spread outputs signal systematic underrepresentation in learned features

Curriculum Training Results

EER (%, ↓) across ASVspoof 2019, 2021, ASVspoof 5, and Fake-or-Real. Impact-driven curriculum variants compared against the SSL-XLSR baseline.

FrameworkHigh-impactSelection MetricASV19ASV21ASV5FoR
OverallVCTTSOverallVCTTSOverallVCTTSOverall
SSL-XLSR [14]All—0.560.750.553.044.062.9225.4324.8731.8042.07
SSL-XLSR w/ CurriculumA4Both0.510.650.541.682.331.6227.0027.5533.6636.50
SSL-XLSR w/ CurriculumA1+A4EER-sensitivity0.600.820.581.482.011.4521.0419.6927.8225.97
SSL-XLSR w/ CurriculumA3+A4Entropy-loss0.400.500.412.093.111.9021.3920.6026.0031.89

↓ Lower EER is better. Highlighted values are best per column. Baseline row dimmed for contrast.

Key Findings

Attack-Level Asymmetry

EER sensitivity and entropy-loss analysis reveal that attacks contribute unequally. Some dominate the decision boundary while others are systematically underlearned despite co-training.

Analysis Drives Framework

The high-impact and low-impact partition identified through diagnostics directly determines the curriculum structure. This is not post-hoc analysis but the basis of the training design.

Balanced Learning

Curriculum training reduces unevenness in how attacks are learned across VC and TTS types. Overall EER is reduced, and the gap between VC and TTS EER narrows, a consistent byproduct of more balanced learning.

Better Generalization

When learning is more balanced across attack types, generalization tends to improve. This is a common characteristic observed across datasets, not an absolute guarantee.