Simple & Intuitive Tensorflow implementation of "A Style-Based Generator Architecture for Generative Adversarial Networks" (CVPR 2019 Oral)
├── dataset
└── YOUR_DATASET_NAME
├── 000001.jpg
├── 000002.png
└── ...
> python main.py --dataset FFHQ --img_size 1024 --gpu_num 4 --progressive True --phase train
> python main.py --dataset FFHQ --img_size 1024 --progressive True --batch_size 16 --phase test
python main.py --dataset FFHQ --img_size 1024 --progressive True --phase draw --draw uncurated
python main.py --dataset FFHQ --img_size 1024 --progressive True --phase draw --draw style_mix
python main.py --dataset FFHQ --img_size 1024 --progressive True --phase draw --draw truncation_trick
max_iteration
= 900
Official code
= 2500