-
PyTorch实现的TransGAN论文:[WIP]
资源介绍
TransGAN-PyTorch
PyTorch实施TransGAN论文
原始文件可以在找到。
安装
您可以通过pip安装软件包:
pip install transgan-pytorch
用法
import torch
from transgan_pytorch import TransGAN
tgan = TransGAN (...)
z = torch . rand ( 100 ) # random noise
pred = tgan ( z )
执照