korallll commited on
Commit
320ca17
·
verified ·
1 Parent(s): 8eb1e2b

Add meta.yaml (HF download-stats query file) to enable download tracking

Browse files
Files changed (1) hide show
  1. meta.yaml +34 -0
meta.yaml ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ system:
2
+ name: "AASIST-L"
3
+ slug: "aasist-l"
4
+ description: >
5
+ AASIST-L: the lightweight variant of AASIST (audio anti-spoofing using
6
+ integrated spectro-temporal graph attention networks). Same architecture as
7
+ AASIST — sinc-convolution front-end, RawNet2-style residual encoder, and
8
+ heterogeneous stacking graph attention over spectral and temporal sub-graphs
9
+ with a learnable readout — but with a narrower residual stack and graph
10
+ dimensions (~85k params vs AASIST's ~298k). Official clovaai/aasist
11
+ ASVspoof2019 LA pretrained checkpoint, FP32, deterministic
12
+ first-64600-sample window (no random crop).
13
+ code: "https://github.com/clovaai/aasist"
14
+ checkpoint: "https://huggingface.co/SpeechAntiSpoofingBenchmarks/AASIST-L/blob/e4185b270ec20077c918e06a45093717a1bd5e30/AASIST-L.pth"
15
+ params_millions: 0.085306
16
+ paper:
17
+ arxiv_id: "2110.01200"
18
+ url: "https://arxiv.org/abs/2110.01200"
19
+ bibtex: |
20
+ @inproceedings{jung2022aasist,
21
+ title={{AASIST}: Audio Anti-Spoofing Using Integrated Spectro-Temporal Graph Attention Networks},
22
+ author={Jung, Jee-weon and Heo, Hee-Soo and Tak, Hemlata and Shim, Hye-jin and Chung, Joon Son and Lee, Bong-Jin and Yu, Ha-Jin and Evans, Nicholas},
23
+ booktitle={ICASSP 2022 - 2022 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
24
+ pages={6367--6371},
25
+ year={2022},
26
+ organization={IEEE}
27
+ }
28
+ notes: >
29
+ Lightweight AASIST-L variant (not the full AASIST). Same _net.py Model class as
30
+ AASIST; differs only in model_config (filts [..,[32,24],[24,24]], gat_dims
31
+ [24,32], pool_ratios [0.4,0.5,0.7,0.5]) and checkpoint. Deterministic
32
+ first-64600-sample window (no random crop), matching clovaai/aasist
33
+ data_utils.pad() used at eval. Checkpoint mirrored to
34
+ SpeechAntiSpoofingBenchmarks/AASIST-L (pinned at publish).