Add AASIST-L submission for DFADD

#7
by korallll - opened
Files changed (1) hide show
  1. submissions/aasist-l.yaml +46 -0
submissions/aasist-l.yaml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: 4
2
+ system:
3
+ name: AASIST-L
4
+ slug: aasist-l
5
+ description: 'AASIST-L: the lightweight variant of AASIST (audio anti-spoofing using integrated spectro-temporal
6
+ graph attention networks). Same architecture as AASIST — sinc-convolution front-end, RawNet2-style
7
+ residual encoder, and heterogeneous stacking graph attention over spectral and temporal sub-graphs
8
+ with a learnable readout — but with a narrower residual stack and graph dimensions (~85k params vs
9
+ AASIST''s ~298k). Official clovaai/aasist ASVspoof2019 LA pretrained checkpoint, FP32, deterministic
10
+ first-64600-sample window (no random crop).'
11
+ code: https://github.com/clovaai/aasist
12
+ checkpoint: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/blob/e4185b270ec20077c918e06a45093717a1bd5e30/AASIST-L.pth
13
+ params_millions: 0.085306
14
+ paper:
15
+ arxiv_id: '2110.01200'
16
+ url: https://arxiv.org/abs/2110.01200
17
+ bibtex: "@inproceedings{jung2022aasist,\n title={{AASIST}: Audio Anti-Spoofing Using Integrated Spectro-Temporal\
18
+ \ Graph Attention Networks},\n author={Jung, Jee-weon and Heo, Hee-Soo and Tak, Hemlata and Shim,\
19
+ \ Hye-jin and Chung, Joon Son and Lee, Bong-Jin and Yu, Ha-Jin and Evans, Nicholas},\n booktitle={ICASSP\
20
+ \ 2022 - 2022 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},\n\
21
+ \ pages={6367--6371},\n year={2022},\n organization={IEEE}\n}\n"
22
+ dataset:
23
+ id: SpeechAntiSpoofingBenchmarks/DFADD
24
+ revision: da9ec704a3db3b6a93b3f459fedd80e34b8ccdfa
25
+ split: test
26
+ scores:
27
+ eer_percent: 32.71523178807947
28
+ n_trials: 3755
29
+ n_skipped: 0
30
+ artifact:
31
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/resolve/d317625b1eea4709af1e688965649ac2b77dbd46/.eval_results/SpeechAntiSpoofingBenchmarks/DFADD/scores.txt
32
+ scores_sha256: 3f8ccf1d9f2f38cc540b1fdce2fa43267bf66763f5f0a9730b9178de50e9c06f
33
+ bench_version: speech-spoof-bench==0.3.4
34
+ reproduction:
35
+ reproduced_by: SpeechAntiSpoofingBenchmarks
36
+ reproduced_at: '2026-06-10'
37
+ reproduced_bench_version: speech-spoof-bench==0.3.4
38
+ match: scoring
39
+ submitter:
40
+ hf_username: korallll
41
+ contact: k.n.borodin@mtuci.ru
42
+ submitted_at: '2026-06-10'
43
+ notes: Lightweight AASIST-L variant (not the full AASIST). Same _net.py Model class as AASIST; differs
44
+ only in model_config (filts [..,[32,24],[24,24]], gat_dims [24,32], pool_ratios [0.4,0.5,0.7,0.5]) and
45
+ checkpoint. Deterministic first-64600-sample window (no random crop), matching clovaai/aasist data_utils.pad()
46
+ used at eval. Checkpoint mirrored to SpeechAntiSpoofingBenchmarks/AASIST-L (pinned at publish).