/TransGAN-PyTorch

[WIP] PyTorch implementation of the TransGAN paper

Primary LanguagePythonMIT LicenseMIT

TransGAN-PyTorch

PyTorch implementation of the TransGAN paper

The original paper can be found here.

Installation

You can install the package via pip:

pip install transgan-pytorch

Usage

import torch
from transgan_pytorch import TransGAN

tgan = TransGAN(...)

z = torch.rand(100) # random noise
pred = tgan(z)

License

MIT