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.

##Raghavan - HKN TODO

  • Install Anaconda and Jupyter notebook
  • Install tensorflow version 1.13.1
    • conda create -n tf tensorflow
    • conda activate tf
    • pip install --upgrade tensorflow==1.13.1
  • Install matplotlib
    • pip install matplotlib
  • Install Pillow
    • pip install Pillow
  • Good to go!