korallll commited on
Commit
f1e6b9e
·
verified ·
1 Parent(s): a65e57d

Upload submissions/xlsr-sls.yaml with huggingface_hub

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