Anime-style portrait generator (DC-GAN)
Anime-style portrait generator
GitHub repo: https://github.com/RottenTangerine/Anime-Portrait-Generator
Dataset: Anime GAN Lite | Kaggle
I manually delete the desktop.ini file
this project is a simple implementation of DC-GAN to generate pictures by random noise.
Sample outputs




How to use this model
- configure the model you want to use in the
config.py
- run
generage.py
Ā orpython generate.py
in the terminal
How to train your own model
- put the dataset you wish to generate under
./data
folder. - configure the
config.py
change the argument--dataset
to your own dataset path - run
train.py
orpython train.py
in the terminal
:warning:Note: since normalization operation included, the color style between generate pic and original pic may not same.
Knowing issues
- The output of the discriminator can be optimized, which may improve the network's performance
- It still has mode collapse problems in a given model. I will fix it later.