Views
No views yet
| File | ITW EER | Architecture | License |
|---|---|---|---|
xlsr2_300m.pt | — | XLSR-300M backbone (fairseq, derivative of facebookresearch/fairseq). | CC-BY-NC-4.0 (upstream) |
baseline_xlsr_aasist.pth | ~10.5% | Single XLSR + AASIST baseline (paper Table 1 row "XLSR+AASIST"). | CC-BY-NC-4.0 |
sonar_full_xlsr_aasist_eer6.pth | 6.0% | SONAR-Full: dual XLSR + RFE + cross-attention + AASIST + JS-alignment loss. Matches guided_model.GuidedModel. | CC-BY-NC-4.0 |
sonar_finetune_xlsr_mamba_eer5p5.pth | 5.5% | SONAR-Finetune: frozen XLSR-Mamba content branch + RFE/NFE + cross-attention + Conformer head + JS-alignment loss. | CC-BY-NC-4.0 |
1from huggingface_hub import hf_hub_download
2import torch
3from argparse import Namespace
4from sonar.guided_model import GuidedModel
5
6ckpt = hf_hub_download(repo_id="idonithid/SONAR-weights",
7 filename="sonar_full_xlsr_aasist_eer6.pth")
8xlsr = hf_hub_download(repo_id="idonithid/SONAR-weights",
9 filename="xlsr2_300m.pt")
10import os; os.environ["SONAR_XLSR_CKPT"] = xlsr
11
12model = GuidedModel(Namespace(algo=4, batch_size=1, device="cuda"), "cuda").cuda()
13model.load_state_dict(torch.load(ckpt, map_location="cuda"), strict=False)
14model.eval()1@inproceedings{hidekel2026sonar,
2 title = {{SONAR}: Spectral-Contrastive Audio Residuals for Generalizable Deepfake Detection},
3 author = {Hidekel, Ido Nitzan and Lifshitz, Gal and Cohen, Khen and Raviv, Dan},
4 booktitle = {Proceedings of the 43rd International Conference on Machine Learning (ICML)},
5 year = {2026}
6}