Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -15,7 +15,17 @@ This dataset was obtained from the original CycleGAN Datasets directory availabl
|
|
15 |
|
16 |
For more details about the dataset you can refer to the [original CycleGAN publication](https://arxiv.org/abs/1703.10593).
|
17 |
|
|
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
### Citation Information
|
21 |
|
|
|
15 |
|
16 |
For more details about the dataset you can refer to the [original CycleGAN publication](https://arxiv.org/abs/1703.10593).
|
17 |
|
18 |
+
### How to use
|
19 |
|
20 |
+
You can easily load the dataset with the following lines :
|
21 |
+
|
22 |
+
```python
|
23 |
+
from datasets import load_dataset
|
24 |
+
|
25 |
+
data_horses = load_dataset("gigant/horse2zebra", name="horse", split="train")
|
26 |
+
data_zebras = load_dataset("gigant/horse2zebra", name="zebra", split="train")
|
27 |
+
```
|
28 |
+
Two splits are available, `"train"` and `"test"`
|
29 |
|
30 |
### Citation Information
|
31 |
|