Add Nes2Net scores for ODSS

#13
by korallll - opened
Files changed (1) hide show
  1. submissions/nes2net.yaml +46 -0
submissions/nes2net.yaml ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ schema_version: 4
2
+ system:
3
+ name: Nes2Net
4
+ slug: nes2net
5
+ description: wav2vec 2.0 (XLS-R 300M) self-supervised front-end fine-tuned end-to-end with a Nes2Net-X (Nested Res2Net TDNN)
6
+ back-end for speech anti-spoofing. The nested Res2Net structure couples multi-scale residual groups with squeeze- excitation,
7
+ replacing dimensionality-reducing necks; mean temporal pooling + linear classifier. Only ~0.51M back-end params. Official
8
+ Nes2Net-X single checkpoint (ASVspoof2021 LA 1.73% / DF 1.65% EER as reported), trained on ASVspoof2019 LA with RawBoost,
9
+ FP32, deterministic first-64600-sample window (no random crop).
10
+ code: https://github.com/Liu-Tianchi/Nes2Net_ASVspoof_ITW
11
+ checkpoint: https://huggingface.co/SpeechAntiSpoofingBenchmarks/Nes2Net
12
+ params_millions: 317.9026
13
+ paper:
14
+ arxiv_id: '2504.05657'
15
+ url: https://arxiv.org/abs/2504.05657
16
+ bibtex: "@article{Nes2Net,\n author={Liu, Tianchi and Truong, Duc-Tuan and Das, Rohan Kumar and Lee, Kong Aik and Li,\
17
+ \ Haizhou},\n journal={IEEE Transactions on Information Forensics and Security},\n title={Nes2Net: A Lightweight Nested\
18
+ \ Architecture for Foundation Model Driven Speech Anti-Spoofing},\n year={2025},\n volume={20},\n pages={12005--12018},\n\
19
+ \ doi={10.1109/TIFS.2025.3626963}\n}\n"
20
+ dataset:
21
+ id: SpeechAntiSpoofingBenchmarks/ODSS
22
+ revision: a9a7dfb3e2cd3a4df8a08ba3f3705ed36db193d7
23
+ split: test
24
+ scores:
25
+ eer_percent: 29.90830297701294
26
+ n_trials: 26954
27
+ n_skipped: 0
28
+ artifact:
29
+ scores_url: https://huggingface.co/SpeechAntiSpoofingBenchmarks/Nes2Net/resolve/b0cbc3e240709421013bb273e0acf1dacf6a2659/.eval_results/SpeechAntiSpoofingBenchmarks/ODSS/scores.txt
30
+ scores_sha256: 62d427a029a588d91aaa7500ee7bde1d9260e11708483984b36624ed4a49ffbe
31
+ bench_version: speech-spoof-bench==0.3.4
32
+ reproduction:
33
+ reproduced_by: SpeechAntiSpoofingBenchmarks
34
+ reproduced_at: '2026-06-10'
35
+ reproduced_bench_version: speech-spoof-bench==0.3.4
36
+ match: scoring
37
+ submitter:
38
+ hf_username: korallll
39
+ contact: k.n.borodin@mtuci.ru
40
+ submitted_at: '2026-06-10'
41
+ notes: XLS-R 300M (wav2vec 2.0) front-end + Nes2Net-X back-end, the single (non-averaged) checkpoint from Liu-Tianchi/Nes2Net_ASVspoof_ITW
42
+ (Nes_ratio [8,8], SE_ratio [1], pool_func 'mean', dilation 2). Architecture is built from the base xlsr2_300m.pt model config,
43
+ then every weight is overwritten by the fine-tuned checkpoint. Deterministic first-64600-sample window (no random crop),
44
+ matching the source data_utils_SSL.py::pad used at eval (default --test_protocol 4sec). score = output logit for class 1
45
+ (bona fide); higher = more bona fide. Back-end params ~0.51M; params_millions reports the full deployed model incl. the
46
+ XLS-R front-end.