How_to_do_style_transfer_in_tensorflow

##Overview

This is the code for this video on Youtube by Siraj Raval as part of the Intro to Deep Learning Nanodegree with Udacity. We're going to re-purpose the pre-trained VGG16 convolutional network that won the ImageNet competition in 2014 for image classification to transfer the style of a given image to another. This is the original paper on the topic.

##Dependencies

  • tensorflow
  • matplotlib
  • python 3

Use pip to install missing dependencies

##Usage

Run jupyter notebook in the top level directory and the code will pop up in your browser.

##Credits

The credits for this code go to Aniruddha-Tapas. I've merely created a wrapper to get people started.