Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -6,12 +6,15 @@ pretty_name: W-Bench
|
|
6 |
size: 10,000 instances
|
7 |
---
|
8 |
|
|
|
|
|
9 |
# What is it?
|
|
|
10 |
**W-Bench is the first benchmark to evaluate watermarking robustness across four image editing techniques.**
|
11 |
|
12 |
Eleven representative watermarking methods are evaluated on the W-Bench. The W-Bench contains 10,000 images sourced from datasets such as COCO, Flickr, ShareGPT4V, etc.
|
13 |
|
14 |
-
GitHub
|
15 |
|
16 |
# Dataset Structure
|
17 |
|
@@ -19,7 +22,7 @@ The evaluation set consists of six subsets, each targeting a different type of A
|
|
19 |
- 1,000 samples for stochastic regeneration
|
20 |
- 1,000 samples for deterministic regeneration
|
21 |
- 1,000 samples for global editing
|
22 |
-
- 5,000 samples for local editing (divided into five sets, each containing 1,000 images, with different mask sizes ranging from 10–60% of the image area)
|
23 |
- 1,000 samples for image-to-video generation
|
24 |
- 1,000 samples for testing conventional distortion
|
25 |
|
@@ -27,6 +30,12 @@ The evaluation set consists of six subsets, each targeting a different type of A
|
|
27 |
|
28 |
## Using `huggingface_hub`
|
29 |
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
```python
|
31 |
from huggingface_hub import snapshot_download
|
32 |
folder = snapshot_download(
|
|
|
6 |
size: 10,000 instances
|
7 |
---
|
8 |
|
9 |
+
# **[ICLR 2025]** [Robust Watermarking Using Generative Priors Against Image Editing: From Benchmarking to Advances](https://arxiv.org/abs/2410.18775)
|
10 |
+
|
11 |
# What is it?
|
12 |
+
|
13 |
**W-Bench is the first benchmark to evaluate watermarking robustness across four image editing techniques.**
|
14 |
|
15 |
Eleven representative watermarking methods are evaluated on the W-Bench. The W-Bench contains 10,000 images sourced from datasets such as COCO, Flickr, ShareGPT4V, etc.
|
16 |
|
17 |
+
GitHub Repo: [https://github.com/Shilin-LU/VINE](https://github.com/Shilin-LU/VINE)
|
18 |
|
19 |
# Dataset Structure
|
20 |
|
|
|
22 |
- 1,000 samples for stochastic regeneration
|
23 |
- 1,000 samples for deterministic regeneration
|
24 |
- 1,000 samples for global editing
|
25 |
+
- 5,000 samples for local editing (divided into five sets, each containing 1,000 images and 1,000 masks, with different mask sizes ranging from 10–60% of the image area)
|
26 |
- 1,000 samples for image-to-video generation
|
27 |
- 1,000 samples for testing conventional distortion
|
28 |
|
|
|
30 |
|
31 |
## Using `huggingface_hub`
|
32 |
|
33 |
+
```
|
34 |
+
huggingface-cli download Shilin-LU/W-Bench --repo-type=dataset --local-dir W-Bench
|
35 |
+
```
|
36 |
+
|
37 |
+
or
|
38 |
+
|
39 |
```python
|
40 |
from huggingface_hub import snapshot_download
|
41 |
folder = snapshot_download(
|