GithubHelp home page GithubHelp logo

huggingface / pytorch-pretrained-biggan Goto Github PK

View Code? Open in Web Editor NEW
1.0K 25.0 176.0 340 KB

๐Ÿฆ‹A PyTorch implementation of BigGAN with pretrained weights and conversion scripts.

License: MIT License

Python 98.46% Shell 1.54%
neural-network gan pytorch biggan computer-vision artificial-intelligence generative-adversarial-network

pytorch-pretrained-biggan's Introduction

PyTorch pretrained BigGAN

An op-for-op PyTorch reimplementation of DeepMind's BigGAN model with the pre-trained weights from DeepMind.

Introduction

This repository contains an op-for-op PyTorch reimplementation of DeepMind's BigGAN that was released with the paper Large Scale GAN Training for High Fidelity Natural Image Synthesis by Andrew Brock, Jeff Donahue and Karen Simonyan.

This PyTorch implementation of BigGAN is provided with the pretrained 128x128, 256x256 and 512x512 models by DeepMind. We also provide the scripts used to download and convert these models from the TensorFlow Hub models.

This reimplementation was done from the raw computation graph of the Tensorflow version and behave similarly to the TensorFlow version (variance of the output difference of the order of 1e-5).

This implementation currently only contains the generator as the weights of the discriminator were not released (although the structure of the discriminator is very similar to the generator so it could be added pretty easily. Tell me if you want to do a PR on that, I would be happy to help.)

Installation

This repo was tested on Python 3.6 and PyTorch 1.0.1

PyTorch pretrained BigGAN can be installed from pip as follows:

pip install pytorch-pretrained-biggan

If you simply want to play with the GAN this should be enough.

If you want to use the conversion scripts and the imagenet utilities, additional requirements are needed, in particular TensorFlow and NLTK. To install all the requirements please use the full_requirements.txt file:

git clone https://github.com/huggingface/pytorch-pretrained-BigGAN.git
cd pytorch-pretrained-BigGAN
pip install -r full_requirements.txt

Models

This repository provide direct and simple access to the pretrained "deep" versions of BigGAN for 128, 256 and 512 pixels resolutions as described in the associated publication. Here are some details on the models:

  • BigGAN-deep-128: a 50.4M parameters model generating 128x128 pixels images, the model dump weights 201 MB,
  • BigGAN-deep-256: a 55.9M parameters model generating 256x256 pixels images, the model dump weights 224 MB,
  • BigGAN-deep-512: a 56.2M parameters model generating 512x512 pixels images, the model dump weights 225 MB.

Please refer to Appendix B of the paper for details on the architectures.

All models comprise pre-computed batch norm statistics for 51 truncation values between 0 and 1 (see Appendix C.1 in the paper for details).

Usage

Here is a quick-start example using BigGAN with a pre-trained model.

See the doc section below for details on these classes and methods.

import torch
from pytorch_pretrained_biggan import (BigGAN, one_hot_from_names, truncated_noise_sample,
                                       save_as_images, display_in_terminal)

# OPTIONAL: if you want to have more information on what's happening, activate the logger as follows
import logging
logging.basicConfig(level=logging.INFO)

# Load pre-trained model tokenizer (vocabulary)
model = BigGAN.from_pretrained('biggan-deep-256')

# Prepare a input
truncation = 0.4
class_vector = one_hot_from_names(['soap bubble', 'coffee', 'mushroom'], batch_size=3)
noise_vector = truncated_noise_sample(truncation=truncation, batch_size=3)

# All in tensors
noise_vector = torch.from_numpy(noise_vector)
class_vector = torch.from_numpy(class_vector)

# If you have a GPU, put everything on cuda
noise_vector = noise_vector.to('cuda')
class_vector = class_vector.to('cuda')
model.to('cuda')

# Generate an image
with torch.no_grad():
    output = model(noise_vector, class_vector, truncation)

# If you have a GPU put back on CPU
output = output.to('cpu')

# If you have a sixtel compatible terminal you can display the images in the terminal
# (see https://github.com/saitoha/libsixel for details)
display_in_terminal(output)

# Save results as png images
save_as_images(output)

output_0 output_1 output_2

Doc

Loading DeepMind's pre-trained weights

To load one of DeepMind's pre-trained models, instantiate a BigGAN model with from_pretrained() as:

model = BigGAN.from_pretrained(PRE_TRAINED_MODEL_NAME_OR_PATH, cache_dir=None)

where

  • PRE_TRAINED_MODEL_NAME_OR_PATH is either:

    • the shortcut name of a Google AI's or OpenAI's pre-trained model selected in the list:

      • biggan-deep-128: 12-layer, 768-hidden, 12-heads, 110M parameters
      • biggan-deep-256: 24-layer, 1024-hidden, 16-heads, 340M parameters
      • biggan-deep-512: 12-layer, 768-hidden, 12-heads , 110M parameters
    • a path or url to a pretrained model archive containing:

      • config.json: a configuration file for the model, and
      • pytorch_model.bin a PyTorch dump of a pre-trained instance of BigGAN (saved with the usual torch.save()).

    If PRE_TRAINED_MODEL_NAME_OR_PATH is a shortcut name, the pre-trained weights will be downloaded from AWS S3 (see the links here) and stored in a cache folder to avoid future download (the cache folder can be found at ~/.pytorch_pretrained_biggan/).

  • cache_dir can be an optional path to a specific directory to download and cache the pre-trained model weights.

Configuration

BigGANConfig is a class to store and load BigGAN configurations. It's defined in config.py.

Here are some details on the attributes:

  • output_dim: output resolution of the GAN (128, 256 or 512) for the pre-trained models,
  • z_dim: size of the noise vector (128 for the pre-trained models).
  • class_embed_dim: size of the class embedding vectors (128 for the pre-trained models).
  • channel_width: size of each channel (128 for the pre-trained models).
  • num_classes: number of classes in the training dataset, like imagenet (1000 for the pre-trained models).
  • layers: A list of layers definition. Each definition for a layer is a triple of [up-sample in the layer ? (bool), number of input channels (int), number of output channels (int)]
  • attention_layer_position: Position of the self-attention layer in the layer hierarchy (8 for the pre-trained models).
  • eps: epsilon value to use for spectral and batch normalization layers (1e-4 for the pre-trained models).
  • n_stats: number of pre-computed statistics for the batch normalization layers associated to various truncation values between 0 and 1 (51 for the pre-trained models).

Model

BigGAN is a PyTorch model (torch.nn.Module) of BigGAN defined in model.py. This model comprises the class embeddings (a linear layer) and the generator with a series of convolutions and conditional batch norms. The discriminator is currently not implemented since pre-trained weights have not been released for it.

The inputs and output are identical to the TensorFlow model inputs and outputs.

We detail them here.

BigGAN takes as inputs:

  • z: a torch.FloatTensor of shape [batch_size, config.z_dim] with noise sampled from a truncated normal distribution, and
  • class_label: an optional torch.LongTensor of shape [batch_size, sequence_length] with the token types indices selected in [0, 1]. Type 0 corresponds to a sentence A and type 1 corresponds to a sentence B token (see BERT paper for more details).
  • truncation: a float between 0 (not comprised) and 1. The truncation of the truncated normal used for creating the noise vector. This truncation value is used to selecte between a set of pre-computed statistics (means and variances) for the batch norm layers.

BigGAN outputs an array of shape [batch_size, 3, resolution, resolution] where resolution is 128, 256 or 512 depending of the model:

Utilities: Images, Noise, Imagenet classes

We provide a few utility method to use the model. They are defined in utils.py.

Here are some details on these methods:

  • truncated_noise_sample(batch_size=1, dim_z=128, truncation=1., seed=None):

    Create a truncated noise vector.

    • Params:
      • batch_size: batch size.
      • dim_z: dimension of z
      • truncation: truncation value to use
      • seed: seed for the random generator
    • Output: array of shape (batch_size, dim_z)
  • convert_to_images(obj):

    Convert an output tensor from BigGAN in a list of images.

    • Params:
      • obj: tensor or numpy array of shape (batch_size, channels, height, width)
    • Output:
      • list of Pillow Images of size (height, width)
  • save_as_images(obj, file_name='output'):

    Convert and save an output tensor from BigGAN in a list of saved images.

    • Params:
      • obj: tensor or numpy array of shape (batch_size, channels, height, width)
      • file_name: path and beggingin of filename to save. Images will be saved as file_name_{image_number}.png
  • display_in_terminal(obj):

    Convert and display an output tensor from BigGAN in the terminal. This function use libsixel and will only work in a libsixel-compatible terminal. Please refer to https://github.com/saitoha/libsixel for more details.

    • Params:
      • obj: tensor or numpy array of shape (batch_size, channels, height, width)
      • file_name: path and beggingin of filename to save. Images will be saved as file_name_{image_number}.png
  • one_hot_from_int(int_or_list, batch_size=1):

    Create a one-hot vector from a class index or a list of class indices.

    • Params:
      • int_or_list: int, or list of int, of the imagenet classes (between 0 and 999)
      • batch_size: batch size.
        • If int_or_list is an int create a batch of identical classes.
        • If int_or_list is a list, we should have len(int_or_list) == batch_size
    • Output:
      • array of shape (batch_size, 1000)
  • one_hot_from_names(class_name, batch_size=1):

    Create a one-hot vector from the name of an imagenet class ('tennis ball', 'daisy', ...). We use NLTK's wordnet search to try to find the relevant synset of ImageNet and take the first one. If we can't find it direcly, we look at the hyponyms and hypernyms of the class name.

    • Params:
      • class_name: string containing the name of an imagenet object.
    • Output:
      • array of shape (batch_size, 1000)

Download and conversion scripts

Scripts to download and convert the TensorFlow models from TensorFlow Hub are provided in ./scripts.

The scripts can be used directly as:

./scripts/download_tf_hub_models.sh
./scripts/convert_tf_hub_models.sh

pytorch-pretrained-biggan's People

Contributors

thomwolf avatar vfdev-5 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pytorch-pretrained-biggan's Issues

How to load the model??

model = BigGAN.from_pretrained('biggan-deep-256')
Can we just replace 'biggan-deep-256' with the path which we download the pre-train model??

Generation of representations

Hi, very nice work making pretrained tf models available on pytorch.
How can one use this model to generate representations?

Fine-tune BigGAN?

Would it be possible to finetune this BigGAN implementation to a custom dataset, in order to generate new classes of images?

Something really funny

When I tried to generate image of a cat...
output_1
output_1-1
output_1-2
It seems like a kind of mixture with leopard's body and tiger's face.

train BigGan

will the repo add code to train a BigGan from scratch? Thank you

Output does not match TF implementation

First, I want to thank you for doing this! There are a lot of little pieces to get right and the results so far are pretty amazing.

That said, images are quite different from the Tensorflow implementation. I'm interested in using this with points found with Ganbreeder, which means that I want to match the TF version as closely as possible. I think it's all using cuDNN underneath right? If so, I imagine we could get this closer aligned.

My main question is how to modify the Tensorflow graph to output the intermediate calculations so we can compare activations and figure out which layer(s) are causing the biggest error. I would be happy you with this.

Examples:

TF pytorch URL
https://ganbreeder.app/info?k=ff84584479eb1cc90e4af4a4
Unknown-56 https://ganbreeder.app/info?k=e1a780eba7bd551dfeb43789
Unknown-57 https://ganbreeder.app/info?k=42999d4b4849f0c0852e6ecd

TypeError: 'encoding' is an invalid keyword argument for this function

When I try to load the model I get the following error. Am I missing any dependency?

File "visualize.py", line 97, in
model = BigGAN.from_pretrained(model_name)
File "/home/ricardo/.local/lib/python2.7/site-packages/pytorch_pretrained_biggan/model.py", line 274, in from_pretrained
config = BigGANConfig.from_json_file(resolved_config_file)
File "/home/ricardo/.local/lib/python2.7/site-packages/pytorch_pretrained_biggan/config.py", line 56, in from_json_file
with open(json_file, "r", encoding='utf-8') as reader:
TypeError: 'encoding' is an invalid keyword argument for this function

AssertionError when working with classes which are not in ImageNet

The function one_hot_from_names throws an AssertionError when a class name - which is not in the original ImageNet classes and for which possible synsets do not exist either - is used.

This happens because the batch_size is not updated when calling one_hot_from_int in utils.py after converting words to their respective indices.

The following lines should be able to reproduce this:

import torch
from pytorch_pretrained_biggan import BigGAN, one_hot_from_names
model = BigGAN.from_pretrained('biggan-deep-256')
class_vector = one_hot_from_names(['cake'], batch_size=1)

This would throw the following error:

---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
<ipython-input-4-4dd4cd1296e1> in <module>()
      1 
----> 2 class_vector = one_hot_from_names(['cake'], batch_size=1)

/home/saqib/Projects/Poem2GIF/repos/pytorch-pretrained-BigGAN/pytorch_pretrained_biggan/utils.py in one_hot_from_names(class_name_or_list, batch_size)
    211                 classes.append(IMAGENET[possible_synsets[0].offset()])
    212 
--> 213     return one_hot_from_int(classes, batch_size=batch_size)
    214 
    215 

/home/saqib/Projects/Poem2GIF/repos/pytorch-pretrained-BigGAN/pytorch_pretrained_biggan/utils.py in one_hot_from_int(int_or_list, batch_size)
    164         int_or_list = [int_or_list[0]] * batch_size
    165 
--> 166     assert batch_size == len(int_or_list)
    167 
    168     array = np.zeros((batch_size, NUM_CLASSES), dtype=np.float32)

AssertionError: 

Is the model trained on truncated noise? What was input noise vector characteristics for training?

Hi,

I have noticed in the "utils.py" line 32, you truncated the normal noise in the range [-2,2] by this line of code:

values = truncnorm.rvs(-2, 2, size=(batch_size, dim_z), random_state=state).astype(np.float32)

Could you please let me know whether the pre-trained model is also trained using this truncated noise? If not, could you please let me know the characteristics of the input noise vectors during training your model? Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.