Skip to content

OlavHN/fast-neural-style

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fast neural style transfer

A short writeup and example images are up on my blog.

In an attempt to learn Tensorflow I've implemented an Image Transformation Network as described in Perceptual Losses for Real-Time Style Transfer and Super-Resolution by Johnson et al.

This technique uses loss functions based on a perceptual similarity and style similarity as described by Gatys et al to train a transformation network to synthesize the style of one image with the content of arbitrary images. After it's trained for a particular style it can be used to generate stylized images in one forward pass through the transformer network as opposed to 500-2000 forward + backward passes through a pretrained image classification net which is the direct approach.

Update Oct 23rd

While the results are now much better, I'm still not sure why the original implementation didn't perform as well as Johnsons original work (Now published here)

Usage

First get the dependecies (COCO training set images and VGG model weights):

./get_files.sh

To generate an image directly from style and content, typically to explore styles and parameters:

python neural_style.py --CONTENT_IMAGE content.png --STYLE_IMAGES style.png

Also see other settings and hyperparameters in neural_style.py

To train a model for fast stylizing first download dependences (training images and VGG model weights):

./get_files.sh

Then start training:

python fast-neural-style.py --STYLE_IMAGES style.png --NAME=my_model

Where --TRAIN_IMAGES_PATH points to a directory of JPEGs to train the model. --NAME is used for tensorboard statistics and file name of model weights. The paper uses the COCO image dataset (13GB).

To generate images fast with an already trained model:

python inference.py --IMAGE_PATH=my_content.jpg --NAME=my_model

Requirements

TODO

  • Add a pretrained model
  • Add example pictures / videos

Acknowledgement

About

Fast neural style in tensorflow based on http://arxiv.org/abs/1603.08155

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published