Add AASIST-L scores for HABLA

#12
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/HABLA
23
+ revision: 520797e46fdeb1f3a3765664a6a4e25b509c72f5
24
+ split: test
25
+ scores:
26
+ eer_percent: 34.84310344827586
27
+ n_trials: 80816
28
+ n_skipped: 0
29
+ artifact:
30
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/resolve/4ffd41b02b1cc50a5f98a7eff645990710bc08de/.eval_results/SpeechAntiSpoofingBenchmarks/HABLA/scores.txt
31
+ scores_sha256: df55dad5046efe1a4c717a28c76383309b57550548b8dda3849d782e45e1ee3d
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).