cyberrrange commited on
Commit
02da6e0
·
verified ·
1 Parent(s): a5dbe8e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +52 -3
README.md CHANGED
@@ -1,3 +1,52 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # De-AntiFake: Rethinking the Protective Perturbations Against Voice Cloning Attacks
6
+
7
+ **Paper:** [https://huggingface.co/papers/2507.02606](https://huggingface.co/papers/2507.02606)
8
+
9
+ **Code and usage instructions:** [https://github.com/cyberrrange/De-AntiFake](https://github.com/cyberrrange/De-AntiFake)
10
+
11
+ **Project Page:** [https://de-antifake.github.io](https://de-antifake.github.io)
12
+
13
+ ## Download Model Weights
14
+
15
+ To use our model, you can follow the instruction in our [github reposity](https://github.com/cyberrrange/De-AntiFake). The model weights are hosted in this repository. You can download them using the `huggingface_hub` library:
16
+
17
+ ```python
18
+ from huggingface_hub import hf_hub_download
19
+
20
+
21
+ purification_weights_path = hf_hub_download(
22
+ repo_id="cyberrrange/De-AntiFake",
23
+ filename="purification.pkl"
24
+ )
25
+
26
+ print(f"Purification Model weights downloaded to: {purification_weights_path}")
27
+
28
+ refinement_weights_path = hf_hub_download(
29
+ repo_id="cyberrrange/De-AntiFake",
30
+ filename="refinement.ckpt"
31
+ )
32
+
33
+ print(f"Refinement Model weights downloaded to: {refinement_weights_path}")
34
+ ```
35
+ ## Citation
36
+
37
+ If you use this model, please consider citing our paper:
38
+
39
+ ```
40
+ @inproceedings{de-antifake-icml2025,
41
+ title = {De-AntiFake: Rethinking the Protective Perturbations Against Voice Cloning Attacks},
42
+ author = {Fan, Wei and Chen, Kejiang and Liu, Chang and Zhang, Weiming and Yu, Nenghai},
43
+ booktitle = {International Conference on Machine Learning},
44
+ year = {2025},
45
+ }
46
+ ```
47
+
48
+ ## Contact
49
+
50
+ Technical Questions: [[email protected]](mailto:[email protected])
51
+
52
+ General Inquiries: [[email protected]](mailto:[email protected])