This repository contains an Chainer implementation of MoCoGAN.
Generated samples (300 epoch)
normal ( not using label ) | infogan (during the experiment) |
---|---|
MoCoGAN is one of GAN architectures for video generation. I used MUG Facial Expression Database to train the model. The dataset consisted of 86 subjects(51 male and 34 female) performing various facial expressins. Each video conststed of 50 to 160 frames.
In my experiment, the dataset converted to short video clips like shape of(video_len, channel, height, width) = (16, 3, 64, 64)
.
The model architecture is shown below.
MoCoGAN Architecture |
---|
- Python >= 3.4
- OpenCV
- ffmpeg
Plese refer requirements.txt
for required python packages.
pip install -r requirements.txt
TODO