korallll commited on
Commit
2614492
·
1 Parent(s): 6baeabd

Add AASIST3 submission for DFADD (#11)

Browse files

- Add AASIST3 submission for DFADD (b00186364ead8679063349fb540b725d249d9ea8)

Files changed (1) hide show
  1. submissions/aasist3.yaml +49 -0
submissions/aasist3.yaml ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: 4
2
+ system:
3
+ name: AASIST3
4
+ slug: aasist3
5
+ description: 'KAN-enhanced AASIST speech deepfake detector with a wav2vec 2.0 (XLS-R-53) self-supervised
6
+ front-end. SSL features are projected to 128-d through a Kolmogorov-Arnold (KAN) bridge, processed
7
+ by a RawNet2-style residual encoder and spectro-temporal graph-attention layers, and classified by
8
+ a four-branch inference head with a KAN output layer. ASVspoof 2024 Challenge system; the published
9
+ lab260/AASIST3 checkpoint (note: these weights differ from the paper results). FP32, preemphasis (0.97),
10
+ deterministic first-64600-sample window (no random crop). score = output logit for class 1 (bona fide).'
11
+ code: https://github.com/mtuciru/AASIST3
12
+ checkpoint: https://huggingface.co/lab260/AASIST3
13
+ params_millions: 321.7495
14
+ paper:
15
+ arxiv_id: '2408.17352'
16
+ url: https://arxiv.org/abs/2408.17352
17
+ bibtex: "@inproceedings{borodin24_asvspoof,\n title={AASIST3: KAN-enhanced AASIST speech deepfake\
18
+ \ detection using SSL features and additional regularization for the ASVspoof 2024 Challenge},\n\
19
+ \ author={Borodin, Kirill and Kudryavtsev, Vasiliy and Korzh, Dmitrii and Efimenko, Alexey and\
20
+ \ Mkrtchian, Grach and Gorodnichev, Mikhail and Rogov, Oleg Y.},\n booktitle={The Automatic Speaker\
21
+ \ Verification Spoofing Countermeasures Workshop (ASVspoof 2024)},\n pages={48--55},\n year={2024},\n\
22
+ \ doi={10.21437/ASVspoof.2024-8}\n}\n"
23
+ dataset:
24
+ id: SpeechAntiSpoofingBenchmarks/DFADD
25
+ revision: da9ec704a3db3b6a93b3f459fedd80e34b8ccdfa
26
+ split: test
27
+ scores:
28
+ eer_percent: 1.4000000000000001
29
+ n_trials: 3755
30
+ n_skipped: 0
31
+ artifact:
32
+ scores_url: https://huggingface.co/lab260/AASIST3/resolve/9781bbc24551f969fb076e83c4823857b442761a/.eval_results/SpeechAntiSpoofingBenchmarks/DFADD/scores.txt
33
+ scores_sha256: 934715da01061eda91f0bd1e3bba56d5c59fde5d0f090c2978eb9e67fad608b9
34
+ bench_version: speech-spoof-bench==0.3.4
35
+ reproduction:
36
+ reproduced_by: SpeechAntiSpoofingBenchmarks
37
+ reproduced_at: '2026-06-10'
38
+ reproduced_bench_version: speech-spoof-bench==0.3.4
39
+ match: scoring
40
+ submitter:
41
+ hf_username: korallll
42
+ contact: k.n.borodin@mtuci.ru
43
+ submitted_at: '2026-06-10'
44
+ notes: AASIST3 (KAN-enhanced AASIST + wav2vec 2.0 XLS-R-53 SSL front-end) from mtuciru/AASIST3, weights
45
+ from lab260/AASIST3 (model.safetensors, self-contained incl. the SSL encoder). Loaded via PyTorchModelHubMixin.from_pretrained;
46
+ the XLS-R architecture is built from the wav2vec2-large-xlsr-53 config then every weight is overwritten
47
+ by the checkpoint. Preemphasis (0.97) applied to the full waveform before a deterministic first-64600-sample
48
+ window, matching the source datasets/generic.py eval pipeline. score = logit for class 1 (bona fide);
49
+ higher = more bona fide (source label map bonafide=1, validation uses outputs[:, 1]).