gigant commited on
Commit
63db7d3
1 Parent(s): 3f07367

adding citation info + description

Browse files
Files changed (1) hide show
  1. horse2zebra.py +8 -2
horse2zebra.py CHANGED
@@ -6,13 +6,19 @@ import datasets
6
  from PIL import Image
7
 
8
  _CITATION = """\
9
-
 
 
 
 
 
10
  """
11
 
12
  _DESCRIPTION = """\
 
13
  """
14
 
15
- _HOMEPAGE = ""
16
 
17
  _LICENSE = ""
18
 
6
  from PIL import Image
7
 
8
  _CITATION = """\
9
+ @inproceedings{CycleGAN2017,
10
+ title={Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks},
11
+ author={Zhu, Jun-Yan and Park, Taesung and Isola, Phillip and Efros, Alexei A},
12
+ booktitle={Computer Vision (ICCV), 2017 IEEE International Conference on},
13
+ year={2017}
14
+ }
15
  """
16
 
17
  _DESCRIPTION = """\
18
+ Two unpaired sets of photos of respectively horses and zebras, designed for unpaired image-to-image translation, as seen in the paper introducing CycleGAN
19
  """
20
 
21
+ _HOMEPAGE = "https://people.eecs.berkeley.edu/~taesung_park/CycleGAN/datasets/"
22
 
23
  _LICENSE = ""
24