Add XLSR-SLS scores for DECRO

#5
by korallll - opened
Files changed (1) hide show
  1. submissions/xlsr-sls.yaml +45 -0
submissions/xlsr-sls.yaml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: 4
2
+ system:
3
+ name: XLSR-SLS
4
+ slug: xlsr-sls
5
+ description: wav2vec 2.0 (XLS-R 300M) self-supervised front-end with the SLS (Sensitive Layer Selection) classifier for
6
+ audio deepfake detection. SLS gates and fuses the hidden states of all XLS-R transformer layers — each layer contributing
7
+ distinct discriminative cues — via a per-layer sigmoid attention, sums the weighted multi-layer feature, then a BN + max-pool
8
+ + two-layer MLP head emits a 2-way log-softmax. Official QiShanZhang/SLSforASVspoof-2021-DF checkpoint (model_15, dev-EER
9
+ 1.45%), trained on ASVspoof2019 LA, FP32, deterministic first-64600-sample window (no random crop).
10
+ code: https://github.com/QiShanZhang/SLSforASVspoof-2021-DF
11
+ checkpoint: https://huggingface.co/SpeechAntiSpoofingBenchmarks/XLSR-SLS
12
+ params_millions: 340.79
13
+ paper:
14
+ arxiv_id: 10.1145/3664647.3681345
15
+ url: https://doi.org/10.1145/3664647.3681345
16
+ bibtex: "@inproceedings{zhang2024audio,\n title={Audio Deepfake Detection with Self-Supervised XLS-R and SLS Classifier},\n\
17
+ \ author={Zhang, Qishan and Wen, Shuangbing and Hu, Tao},\n booktitle={Proceedings of the 32nd ACM International Conference\
18
+ \ on Multimedia},\n pages={6765--6773},\n year={2024},\n doi={10.1145/3664647.3681345}\n}\n"
19
+ dataset:
20
+ id: SpeechAntiSpoofingBenchmarks/DECRO
21
+ revision: bb6df2524eadaab6aa6a2366a41a2a5fe1e4104d
22
+ split: test
23
+ scores:
24
+ eer_percent: 12.10082159188074
25
+ n_trials: 37314
26
+ n_skipped: 0
27
+ artifact:
28
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/XLSR-SLS/resolve/9abaf08c439da101296387b79acdae74107d24ae/.eval_results/SpeechAntiSpoofingBenchmarks/DECRO/scores.txt
29
+ scores_sha256: e0ebab9f11083901a6e2c75d5c3a78fa90f659c4218ef125b1ed01cdde7ef73b
30
+ bench_version: speech-spoof-bench==0.3.4
31
+ reproduction:
32
+ reproduced_by: SpeechAntiSpoofingBenchmarks
33
+ reproduced_at: '2026-06-10'
34
+ reproduced_bench_version: speech-spoof-bench==0.3.4
35
+ match: scoring
36
+ submitter:
37
+ hf_username: korallll
38
+ contact: k.n.borodin@mtuci.ru
39
+ submitted_at: '2026-06-10'
40
+ notes: 'XLS-R 300M (wav2vec 2.0) front-end + SLS (Sensitive Layer Selection) classifier, from QiShanZhang/SLSforASVspoof-2021-DF
41
+ (ACM MM 2024). Architecture is built from the base xlsr2_300m.pt model config (shared with the W2V2-AASIST submission),
42
+ then every weight is overwritten by the fine-tuned checkpoint. SLS pools every transformer layer''s hidden state, gates
43
+ each by a learned sigmoid attention, and fuses them before a small MLP head. Deterministic first-64600-sample window (no
44
+ random crop); the head''s fc1 expects this fixed length. score = log-softmax output for class 1 (bona fide); higher = more
45
+ bona fide (source main.py: batch_score = batch_out[:, 1]).'