mkeid / Style-Transfer-Algorithm

TensorFlow implementation of "A Neural Algorithm of Artistic Style" using total variation denoising as a regularizer. Apply artistic style to an image given some artwork as a source.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Style-Transfer-Algorithm implemented in TensorFlow

This is a TensorFlow implementation of A Neural Algorithm of Artistic Style using total variation denoising as a regularizer. A pretrained VGG network was used. It is provided here by machrisaa on GitHub. The VGG implementation was customized to accomodate the implementation requirements and is of the 19-layer variety.

Using this implementation, it is possible to emulate and achieve the same stylistic results as those in the original paper.

The purpose of this repository is to port the joint texture-synthesizing and representation-inverting stylistic-transfer algorithm to TensorFlow.

Results

Style Result

Prerequisites

Usage

To stylize an image, run:

python style_transfer.py path/to/input/image path/to/style/image --out path/to/output/image

The default paths for input, style, and output are "photo.jpg", "art.jpg", and "./" respectively.The first two files are supplied in this repository.

Files

  • style_transfer.py

    The main script where all the magic happens.

  • custom_vgg19.py

    A modified implementation of the VGG 19 network. This particular customization changes the default pooling of max pooling to average pooling, which allows more effective gradient flow.

  • vgg19.npy

    The weights used by the VGG network. This file is not in this repository due to its size. You must download it and place in the working directory. The program will complain and ask for you to download it with a supplied link if it does not find it.

  • utils.py

    Auxiliary routines for parsing images into numpy arrays used in the implementation.

About

TensorFlow implementation of "A Neural Algorithm of Artistic Style" using total variation denoising as a regularizer. Apply artistic style to an image given some artwork as a source.

License:MIT License


Languages

Language:Python 100.0%