This is a Boundary Equailibrium GAN(BEGAN) for image generation.paper
- tensorflow
- opencv
- tqdm
We use CelebA dataset for training, at training state, you should run
python main.py --data_dir DATA_DIRAt the testing/interpolating step, there are three types for image interpolation:
- mode1: using one image, interpolate between it and its mirror image(horizontal flip image)
- mode2: using two images
- mode3: using CelebA images, no inputs For mode1:
python main.py --mode 1 --image1 IMAGE1_PTHFor mode2:
python main.py --mode 2 --image1 IMAGE1_PTH --image2 IMAGE2_PTHFor mode3:
python main.py --mode 3
