xxuan-speech commited on
Commit
68833bf
·
verified ·
1 Parent(s): 3372cb4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -3
README.md CHANGED
@@ -1,3 +1,42 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+ # Introduction
5
+ MCL-MLAAD is the first multilingual benchmark for speech deepfake source tracing. It spans mono- and cross-lingual protocols, includes DSP and SSL baselines, studies language-specific fine-tuning for cross-lingual generalization, and tests robustness to unseen languages/speakers. See arXiv:2508.04143.
6
+
7
+ ## Download the Dataset
8
+
9
+ Install the `datasets` package:
10
+ ```bash
11
+ pip install datasets
12
+ ```
13
+ Log in with your Hugging Face account:
14
+ ```bash
15
+ huggingface-cli login
16
+ ```
17
+ Load the dataset in Python:
18
+ ```bash
19
+ from datasets import load_dataset
20
+
21
+ # Download from HF and cache
22
+ ds = load_dataset("xxuan-speech/MCL-MLAAD")
23
+
24
+ # Optionally: Save the dataset to your own directory
25
+ ds.save_to_disk("mcl-mlaad_local")
26
+ ```
27
+
28
+ ### Code:
29
+ A reference implementation Code is available at: https://github.com/xuanxixi/Multilingual-Source-Tracing
30
+
31
+ ### Bibtex:
32
+ ```bash
33
+ @misc{xuan2025multilingualsourcetracingspeech,
34
+ title={Multilingual Source Tracing of Speech Deepfakes: A First Benchmark},
35
+ author={Xi Xuan and Yang Xiao and Rohan Kumar Das and Tomi Kinnunen},
36
+ year={2025},
37
+ eprint={2508.04143},
38
+ archivePrefix={arXiv},
39
+ primaryClass={eess.AS},
40
+ url={https://arxiv.org/abs/2508.04143}
41
+ }
42
+ ```