Add AASIST-L submission for PyAra

#8
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/PyAra
24
+ revision: 43f03384ee9ad701a64e0baaa531c8aedd724cd8
25
+ split: test
26
+ scores:
27
+ eer_percent: 30.784284413519426
28
+ n_trials: 201778
29
+ n_skipped: 0
30
+ artifact:
31
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/resolve/18b8d33d9ce4bdc6f3de1c0fba3139bc3ad2013a/.eval_results/SpeechAntiSpoofingBenchmarks/PyAra/scores.txt
32
+ scores_sha256: 15033d1ad154e0540f8dc29d53cf7c30a065c5503fecceac99b1f273434e2546
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).