|
|
--- |
|
|
license: mit |
|
|
--- |
|
|
# Introduction |
|
|
Multilingual_Source_Tracing_Protocols corresponds to the paper titled "Multilingual Source Tracing of Speech Deepfakes: A First Benchmark," specifically referring to the four protocols described in Section 2.2 ("Protocols") of the paper. |
|
|
|
|
|
## Download the Protocols |
|
|
|
|
|
Install the `datasets` package: |
|
|
```bash |
|
|
pip install datasets |
|
|
``` |
|
|
Log in with your Hugging Face account: |
|
|
```bash |
|
|
huggingface-cli login |
|
|
``` |
|
|
Load the dataset in Python: |
|
|
```bash |
|
|
from datasets import load_dataset |
|
|
|
|
|
# Download from HF and cache |
|
|
ds = load_dataset("xxuan-speech/Multilingual_Source_Tracing_Protocals") |
|
|
|
|
|
``` |
|
|
|
|
|
### Code: |
|
|
A reference implementation Code is available at: https://github.com/xuanxixi/Multilingual-Source-Tracing |
|
|
|
|
|
### Bibtex: |
|
|
```bash |
|
|
@misc{xuan2025multilingualsourcetracingspeech, |
|
|
title={Multilingual Source Tracing of Speech Deepfakes: A First Benchmark}, |
|
|
author={Xi Xuan and Yang Xiao and Rohan Kumar Das and Tomi Kinnunen}, |
|
|
year={2025}, |
|
|
eprint={2508.04143}, |
|
|
archivePrefix={arXiv}, |
|
|
primaryClass={eess.AS}, |
|
|
url={https://arxiv.org/abs/2508.04143} |
|
|
} |
|
|
``` |