资源算法tgan

tgan

2019-09-10 | |  130 |   0 |   0

Temporal Generative Adversarial Nets

This repository contains a collection of scripts used in the experiments of Temporal Generative Adversarial Nets with Singular Value Clipping.

Disclaimer: PFN provides no warranty or support for this implementation. Use it at your own risk. See license for details.

Results

Requirements

These scripts require the following python libraries.

  • Chainer 2.0.0+

  • h5py

  • numpy

  • pandas

  • PIL

  • PyYAML

  • matplotlib

Note that they also require ffmpeg to produce a video from a set of images.

Usage

Datasets

In order to run our scripts, you need to prepare MovingMNIST and UCF-101 datasets as follows.

MovingMNIST

  1. Download mnist_test_seq.npy from here.

  2. Put it on path-to-tgans/data/mnist_test_seq.npy.

UCF-101

There are two ways to create an UCF-101 dataset for this script.

  1. Transforms all the videos in the UCF-101 dataset to the images.

  2. Resizes these images to the appropriate resolution, and concatenate them into as single hdf5 format represented as (time, channel, rows, cols). In this transformation we used make_ucf101.py in this repository. Note that this script also produces a config file that describes videos and these corresponding label information.

  3. puts them on path-to-tgans/data.

Another way is to simply download these files; please download them from this url, and put them on the same directory.

Training

TGAN with WGAN and Singular Value Clipping

python train.py --config_path configs/moving_mnist/mnist_wgan_svd_zdim-100_no-beta-all_init-uniform-all.yml --gpu 0
python train.py --config_path configs/ucf101/ucf101_wgan_svd_zdim-100_no-beta.yml --gpu 0

TGAN (WGAN and weight clipping)

python train.py --config_path configs/moving_mnist/mnist_wgan_clip_zdim-100_no-beta-all_init-uniform-all.yml --gpu 0
python train.py --config_path configs/ucf101/ucf101_wgan_clip_zdim-100_no-beta.yml --gpu 0

TGAN (vanilla GAN)

python train.py --config_path configs/ucf101/ucf101_vanilla_zdim-100_no-beta.yml --gpu 0

Citation

Please cite the paper if you are interested in:

@inproceedings{TGAN2017,
    author = {Saito, Masaki and Matsumoto, Eiichi and Saito, Shunta},
    title = {Temporal Generative Adversarial Nets with Singular Value Clipping},
    booktitle = {ICCV},
    year = {2017},
}

License

MIT License. Please see the LICENSE file for details.

上一篇:chainer_caption_generation

下一篇:chainer-dfi

用户评价
全部评价

热门资源

  • Keras-ResNeXt

    Keras ResNeXt Implementation of ResNeXt models...

  • seetafaceJNI

    项目介绍 基于中科院seetaface2进行封装的JAVA...

  • spark-corenlp

    This package wraps Stanford CoreNLP annotators ...

  • capsnet-with-caps...

    CapsNet with capsule-wise convolution Project ...

  • inferno-boilerplate

    This is a very basic boilerplate example for pe...