ypw1996 / a-neural-algorithm-of-artistic-style

Neural Style Transfer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A Neural Algorithm of Artistic Style

Source: https://arxiv.org/pdf/1508.06576.pdf
Authors: Leon A. Gatys, Alexander S. Ecker, Matthias Bethge

This is a pytorch implementation of neural style transfer as described in the above paper. It works by extracting the content and style of different images by feeding them through a convolutional neural network and looking at the features at different layers in the network. We then perform gradient descent on a target image and try to minimize the loss between that target image and both the content and style features. The result is a combination of the two.

Combined

Requirements + Versions

Running

All the config is done within the main file. Tweak the variables from within.

$ python3 src/main.py

Results will be saved in /output

About

Neural Style Transfer

License:MIT License


Languages

Language:Python 100.0%