An open API service indexing awesome lists of open source software.

https://github.com/shyamsn97/neuralstyletensorflow

Neural Style algorthim, as introduced in "A Neural Algorithm of Artistic Style", implemented in tensorflow
https://github.com/shyamsn97/neuralstyletensorflow

convolutional-neural-networks deep-learning hacktoberfest2018 help-wanted neural-algorithm style-transfer tensorflow

Last synced: 7 months ago
JSON representation

Neural Style algorthim, as introduced in "A Neural Algorithm of Artistic Style", implemented in tensorflow

Awesome Lists containing this project

README

          

# NeuralStyleTensorflow

## Neural Style algorthim, as introduced in ["A Neural Algorithm of Artistic Style"](https://arxiv.org/abs/1508.06576), implemented in tensorflow

## Examples:
| Input/Content Image | Style Image | Mixed Image|
| :---: | :---: | :---: |
| ![](images/turtle.jpg) | ![](images/picasso-guitar.jpg) | ![](images/picasso-guitar-turtle.jpg) |
| ![](images/dancing.jpg) | ![](images/picasso.jpg) | ![](images/picasso-dancing.jpg) |
| ![](images/doggo.jpg) | ![](images/wave.jpg) | ![](images/doggo-wave.jpg) |
| ![](images/wave.jpg) | ![](images/picasso-guitar.jpg) | ![](images/picasso-guitar-wave.jpg) |

## How to use:
#### Installation:
pip install -r requirements.txt

#### Stylize an input image:
python neural_style.py [input image path] [content image path] [style image path] [size of images] [epochs] [output filename]

#### Stylize a white noise image:
python neural_style.py "white" [content image path] [style image path] [size of images] [epochs] [output filename]