bbueno5000 / How-To-Generate-Art-Demo

This is the code for "How to Generate Art - Intro to Deep Learning #8' by Siraj Raval on YouTube

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How To Generate Art Demo

Overview

We're going to re-purpose the pre-trained VGG16 convolutional network that won the ImageNet competition in 2014 to transfer the style of a given image to another.

Usage

pip install -r requirements.txt

Create a file called ~/.keras/keras.json and make sure it looks like the following:

{
    "image_dim_ordering": "tf",
    "epsilon": 1e-07,
    "floatx": "float32",
    "backend": "tensorflow"
}

jupyter notebook

python demo.py

Contributors

About

This is the code for "How to Generate Art - Intro to Deep Learning #8' by Siraj Raval on YouTube

License:Apache License 2.0


Languages

Language:Jupyter Notebook 100.0%