Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
---
|
2 |
-
|
3 |
description: ''
|
4 |
citation: ''
|
5 |
homepage: ''
|
@@ -89,13 +89,13 @@ This dataset aims to develop effective solutions for detecting and mitigating th
|
|
89 |
|
90 |
| Name | Description | Link |
|
91 |
| ------------- | ------------- | ---------------------|
|
92 |
-
| ELSA1M_track1 | Dataset of 1M images generated using diffusion model | https://huggingface.co/datasets/
|
93 |
-
| ELSA500k_track2 | Dataset of 500k images generated using diffusion model with diffusion attentive attribution maps [1] | https://huggingface.co/datasets/
|
94 |
|
95 |
|
96 |
```python
|
97 |
from datasets import load_dataset
|
98 |
-
elsa_data = load_dataset("
|
99 |
for sample in elsa_data:
|
100 |
image = sample.pop("image")
|
101 |
metadata = sample
|
|
|
1 |
---
|
2 |
+
elsaEU--ELSA1M_track1:
|
3 |
description: ''
|
4 |
citation: ''
|
5 |
homepage: ''
|
|
|
89 |
|
90 |
| Name | Description | Link |
|
91 |
| ------------- | ------------- | ---------------------|
|
92 |
+
| ELSA1M_track1 | Dataset of 1M images generated using diffusion model | https://huggingface.co/datasets/elsaEU/ELSA1M_track1 |
|
93 |
+
| ELSA500k_track2 | Dataset of 500k images generated using diffusion model with diffusion attentive attribution maps [1] | https://huggingface.co/datasets/elsaEU/ELSA500k_track2 |
|
94 |
|
95 |
|
96 |
```python
|
97 |
from datasets import load_dataset
|
98 |
+
elsa_data = load_dataset("elsaEU/ELSA1M_track1", split="train", streaming=True)
|
99 |
for sample in elsa_data:
|
100 |
image = sample.pop("image")
|
101 |
metadata = sample
|