Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -46,3 +46,17 @@ configs:
|
|
| 46 |
This is the dataset proposed in our paper [**Image Copy Detection for Diffusion Models**](https://arxiv.org/abs/2410.xxxxx) (NeurIPS 2024).
|
| 47 |
|
| 48 |
D-Rep consists of 40, 000 image-replica pairs, in which each replica is generated by a diffusion model. The 40, 000 image-replica pairs are manually labeled with 6 replication levels ranging from 0 (no replication) to 5 (total replication). We divide D-Rep into a training set with 90% (36, 000) pairs and a test set with the remaining 10% (4, 000) pairs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
This is the dataset proposed in our paper [**Image Copy Detection for Diffusion Models**](https://arxiv.org/abs/2410.xxxxx) (NeurIPS 2024).
|
| 47 |
|
| 48 |
D-Rep consists of 40, 000 image-replica pairs, in which each replica is generated by a diffusion model. The 40, 000 image-replica pairs are manually labeled with 6 replication levels ranging from 0 (no replication) to 5 (total replication). We divide D-Rep into a training set with 90% (36, 000) pairs and a test set with the remaining 10% (4, 000) pairs.
|
| 49 |
+
|
| 50 |
+
# Download
|
| 51 |
+
|
| 52 |
+
### Automatical
|
| 53 |
+
Install the [datasets](https://huggingface.co/docs/datasets/en/installation) library first, by:
|
| 54 |
+
```
|
| 55 |
+
pip install datasets
|
| 56 |
+
```
|
| 57 |
+
Then it can be downloaded automatically with
|
| 58 |
+
```python
|
| 59 |
+
import numpy as np
|
| 60 |
+
from datasets import load_dataset
|
| 61 |
+
dataset = load_dataset('WenhaoWang/D-Rep')
|
| 62 |
+
```
|