Add AASIST3 scores for DECRO

#4
by korallll - opened
Files changed (1) hide show
  1. submissions/aasist3.yaml +47 -0
submissions/aasist3.yaml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: 4
2
+ system:
3
+ name: AASIST3
4
+ slug: aasist3
5
+ description: 'KAN-enhanced AASIST speech deepfake detector with a wav2vec 2.0 (XLS-R-53) self-supervised front-end. SSL
6
+ features are projected to 128-d through a Kolmogorov-Arnold (KAN) bridge, processed by a RawNet2-style residual encoder
7
+ and spectro-temporal graph-attention layers, and classified by a four-branch inference head with a KAN output layer. ASVspoof
8
+ 2024 Challenge system; the published lab260/AASIST3 checkpoint (note: these weights differ from the paper results). FP32,
9
+ preemphasis (0.97), deterministic first-64600-sample window (no random crop). score = output logit for class 1 (bona fide).'
10
+ code: https://github.com/mtuciru/AASIST3
11
+ checkpoint: https://huggingface.co/lab260/AASIST3
12
+ params_millions: 321.7495
13
+ paper:
14
+ arxiv_id: '2408.17352'
15
+ url: https://arxiv.org/abs/2408.17352
16
+ bibtex: "@inproceedings{borodin24_asvspoof,\n title={AASIST3: KAN-enhanced AASIST speech deepfake detection using SSL\
17
+ \ features and additional regularization for the ASVspoof 2024 Challenge},\n author={Borodin, Kirill and Kudryavtsev,\
18
+ \ Vasiliy and Korzh, Dmitrii and Efimenko, Alexey and Mkrtchian, Grach and Gorodnichev, Mikhail and Rogov, Oleg Y.},\n\
19
+ \ booktitle={The Automatic Speaker Verification Spoofing Countermeasures Workshop (ASVspoof 2024)},\n pages={48--55},\n\
20
+ \ year={2024},\n doi={10.21437/ASVspoof.2024-8}\n}\n"
21
+ dataset:
22
+ id: SpeechAntiSpoofingBenchmarks/DECRO
23
+ revision: bb6df2524eadaab6aa6a2366a41a2a5fe1e4104d
24
+ split: test
25
+ scores:
26
+ eer_percent: 23.58451987062716
27
+ n_trials: 37314
28
+ n_skipped: 0
29
+ artifact:
30
+ scores_url: https://huggingface.co/lab260/AASIST3/resolve/176b079c1efbba8d7746032609eab688e9ca2ec3/.eval_results/SpeechAntiSpoofingBenchmarks/DECRO/scores.txt
31
+ scores_sha256: 1a705b0e8bf61a315bb852de43fecebce1428bb808590b4d5d7fe797684eedf5
32
+ bench_version: speech-spoof-bench==0.3.4
33
+ reproduction:
34
+ reproduced_by: SpeechAntiSpoofingBenchmarks
35
+ reproduced_at: '2026-06-10'
36
+ reproduced_bench_version: speech-spoof-bench==0.3.4
37
+ match: scoring
38
+ submitter:
39
+ hf_username: korallll
40
+ contact: k.n.borodin@mtuci.ru
41
+ submitted_at: '2026-06-10'
42
+ notes: AASIST3 (KAN-enhanced AASIST + wav2vec 2.0 XLS-R-53 SSL front-end) from mtuciru/AASIST3, weights from lab260/AASIST3
43
+ (model.safetensors, self-contained incl. the SSL encoder). Loaded via PyTorchModelHubMixin.from_pretrained; the XLS-R architecture
44
+ is built from the wav2vec2-large-xlsr-53 config then every weight is overwritten by the checkpoint. Preemphasis (0.97) applied
45
+ to the full waveform before a deterministic first-64600-sample window, matching the source datasets/generic.py eval pipeline.
46
+ score = logit for class 1 (bona fide); higher = more bona fide (source label map bonafide=1, validation uses outputs[:,
47
+ 1]).