Add AASIST-L scores for DECRO

#13
by korallll - opened
Files changed (1) hide show
  1. submissions/aasist-l.yaml +45 -0
submissions/aasist-l.yaml ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 graph attention
6
+ networks). Same architecture as AASIST — sinc-convolution front-end, RawNet2-style residual encoder, and heterogeneous
7
+ stacking graph attention over spectral and temporal sub-graphs with a learnable readout — but with a narrower residual
8
+ stack and graph dimensions (~85k params vs AASIST''s ~298k). Official clovaai/aasist ASVspoof2019 LA pretrained checkpoint,
9
+ FP32, deterministic first-64600-sample window (no random crop).'
10
+ code: https://github.com/clovaai/aasist
11
+ checkpoint: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/blob/e4185b270ec20077c918e06a45093717a1bd5e30/AASIST-L.pth
12
+ params_millions: 0.085306
13
+ paper:
14
+ arxiv_id: '2110.01200'
15
+ url: https://arxiv.org/abs/2110.01200
16
+ bibtex: "@inproceedings{jung2022aasist,\n title={{AASIST}: Audio Anti-Spoofing Using Integrated Spectro-Temporal Graph\
17
+ \ Attention Networks},\n author={Jung, Jee-weon and Heo, Hee-Soo and Tak, Hemlata and Shim, Hye-jin and Chung, Joon\
18
+ \ Son and Lee, Bong-Jin and Yu, Ha-Jin and Evans, Nicholas},\n booktitle={ICASSP 2022 - 2022 IEEE International Conference\
19
+ \ on Acoustics, Speech and Signal Processing (ICASSP)},\n pages={6367--6371},\n year={2022},\n organization={IEEE}\n\
20
+ }\n"
21
+ dataset:
22
+ id: SpeechAntiSpoofingBenchmarks/DECRO
23
+ revision: bb6df2524eadaab6aa6a2366a41a2a5fe1e4104d
24
+ split: test
25
+ scores:
26
+ eer_percent: 28.987037926068172
27
+ n_trials: 37314
28
+ n_skipped: 0
29
+ artifact:
30
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/resolve/4c79bae6545639fe7e19b49138552d109961ca37/.eval_results/SpeechAntiSpoofingBenchmarks/DECRO/scores.txt
31
+ scores_sha256: 77df614fda3bb1e9fb64c1477083830741ce085dc2290f997228135b224d5a91
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: Lightweight AASIST-L variant (not the full AASIST). Same _net.py Model class as AASIST; differs only in model_config
43
+ (filts [..,[32,24],[24,24]], gat_dims [24,32], pool_ratios [0.4,0.5,0.7,0.5]) and checkpoint. Deterministic first-64600-sample
44
+ window (no random crop), matching clovaai/aasist data_utils.pad() used at eval. Checkpoint mirrored to SpeechAntiSpoofingBenchmarks/AASIST-L
45
+ (pinned at publish).