The config will suppose your data is in $PaddleGAN/data
. You can symlink your datasets to $PaddleGAN/data
.
PaddleGAN
|-- configs
|-- data
| |-- cityscapes
| | ├── test
| | ├── testA
| | ├── testB
| | ├── train
| | ├── trainA
| | └── trainB
| ├── horse2zebra
| | ├── testA
| | ├── testB
| | ├── trainA
| | └── trainB
| └── facades
| ├── test
| ├── train
| └── val
|-- docs
|-- ppgan
|-- tools
If you put the datasets on other place,for example your/data/path
, you can also change dataroot
in config file:
dataset:
train:
name: PairedDataset
dataroot: your/data/path
num_workers: 4
Datasets of CycleGAN can be downloaded from here, remember to symlink your datasets to $PaddleGAN/data
.
You can use download_cyclegan_data.py
in PaddleGAN/data
to download datasets you wanted.
Supported datasets are: apple2orange, summer2winter_yosemite,horse2zebra, monet2photo, cezanne2photo, ukiyoe2photo, vangogh2photo, maps, cityscapes, facades, iphone2dslr_flower, ae_photos, cityscapes。
run following command. Dataset will be downloaded to ~/.cache/ppgan
and symlink to PaddleGAN/data/
.
python data/download_cyclegan_data.py --name horse2zebra
Data should be arranged in following way if you use custom dataset.
custom_datasets
├── testA
├── testB
├── trainA
└── trainB
Dataset for pix2pix can be downloaded from here
You can use download_pix2pix_data.py
in PaddleGAN/data
to download datasets you wanted. Supported datasets are: apple2orange, summer2winter_yosemite,horse2zebra, monet2photo, cezanne2photo, ukiyoe2photo, vangogh2photo, maps, cityscapes, facades, iphone2dslr_flower, ae_photos, cityscapes.
Dataset will be downloaded to ~/.cache/ppgan
and symlink to PaddleGAN/data/
.
python data/download_pix2pix_data.py --name cityscapes
Data should be arranged in following way if you use custom dataset. And image content should be the same with example image.
facades
├── test
├── train
└── val