ceil2 commited on
Commit
e2c99cb
·
verified ·
1 Parent(s): 70b1915

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +117 -0
README.md CHANGED
@@ -1,3 +1,120 @@
1
  ---
2
  license: unknown
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: unknown
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - deepfake-detection
9
+ - synthetic-image-detection
10
+ - benchmark
11
+ size_categories:
12
+ - 10K<n<100K
13
  ---
14
+ # ArenaBench
15
+
16
+ ## Dataset Description
17
+
18
+ ArenaBench is a large-scale benchmark designed for comprehensive evaluation of deepfake detection methods. It contains approximately 45K testing samples and evaluates detectors across five levels, including in-domain, cross-model, cross-manipulation, commercial models, and real-world scenarios.
19
+
20
+ ## Benchmark Design
21
+
22
+ ArenaBench evaluates deepfake detectors under five complementary settings:
23
+
24
+ | Evaluation Track | Description |
25
+ | --- | --- |
26
+ | In-Domain | Evaluates performance on manipulation or generation domains seen during training. |
27
+ | Cross-Model | Evaluates generalization to unseen generative models. |
28
+ | Cross-Manipulation | Evaluates generalization to unseen facial manipulation techniques. |
29
+ | Commercial-Model | Evaluates detectors on images generated by recent commercial or closed-source generative models. |
30
+ | Real-world Scenarios | Evaluates robustness under realistic data distributions and practical deployment scenarios. |
31
+
32
+ ## Dataset Structure
33
+
34
+ ```text
35
+ ArenaBench/
36
+ ├── images/
37
+ │ ├── train/
38
+ | | ├── real/
39
+ | | | └── *.png/
40
+ | | └── fake/
41
+ | | | └── *.png/
42
+ │ └── test/
43
+ | | ├── In-Domain/
44
+ | | | ├── FaceForensics++/
45
+ | | | | ├── 0_real/
46
+ | | | | | └── *.png/
47
+ | | | | ├── 1_fake/
48
+ | | | | | └── *.png/
49
+ | | | ├── stylegan3/
50
+ | | | | ├── ...
51
+ | | | ├── SDXL/
52
+ | | | | ├── ...
53
+ | | ├── Cross-Model/
54
+ | | | ├── FLUX.2/
55
+ | | | | ├── 0_real/
56
+ | | | | | └── *.png/
57
+ | | | | ├── 1_fake/
58
+ | | | | | └── *.png/
59
+ | | | ├── GRN/
60
+ | | | | ├── .../
61
+ | | | ├── ...
62
+ | | ├── Cross-Manipulation/
63
+ | | | ├── EchoMimic/
64
+ | | | | ├── 0_real/
65
+ | | | | | └── *.png/
66
+ | | | | ├── 1_fake/
67
+ | | | | | └── *.png/
68
+ | | | ├── OSDFace/
69
+ | | | | ├── .../
70
+ | | | ├── ...
71
+ | | ├── Commercial-Model/
72
+ | | | ├── Gpt-Image-2/
73
+ | | | | ├── 0_real/
74
+ | | | | | └── *.png/
75
+ | | | | ├── 1_fake/
76
+ | | | | | └── *.png/
77
+ | | | ├── NanoBananaPro/
78
+ | | | | ├── .../
79
+ | | | ├── ...
80
+ | | ├── Real-world-Scenarios/
81
+ | | | ├── ScaleDF/
82
+ | | | | ├── 0_real/
83
+ | | | | | └── *.png/
84
+ | | | | ├── 1_fake/
85
+ | | | | | └── *.png/
86
+ | | | ├── MFFI/
87
+ | | | | ├── .../
88
+ | | | ├── ...
89
+ ├── annotations/
90
+ | ├── train/
91
+ | | └── *.json/
92
+ | └── test/
93
+ | | └── *.json/
94
+ ```
95
+
96
+ ## Annotation Format
97
+
98
+ Each sample is represented as a JSON object:
99
+
100
+ ```json
101
+ {
102
+ "images": [
103
+ "ArenaBench/images/test/Cross_Model/FLUX.2/1_fake/image_0103.png"
104
+ ],
105
+ "type": "entire face generation",
106
+ "label": 1
107
+ }
108
+ ```
109
+
110
+ ## Download
111
+
112
+ The complete ArenaBench dataset can be downloaded using the Hugging Face CLI:
113
+
114
+ ```bash
115
+ hf download ceil2/ArenaBench --repo-type dataset --local-dir ArenaBench
116
+ ```
117
+
118
+ ## Limitations and Responsible Use
119
+
120
+ ArenaBench is intended for academic research on deepfake detection and multimedia forensics. All commercial use is strictly prohibited. Users are responsible for complying with the licenses and terms of use of the original data sources.