Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.6 KB

README.md

File metadata and controls

31 lines (22 loc) · 1.6 KB

Neural Style

Overview

This is a TensorFlow implementation of the paper A Neural Algorithm of Artistic Style by Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge.

Setup & Usage

git clone https://github.com/ftokarev/tf-neural-style
cd tf-neural-style
virtualenv venv --python /usr/bin/python3
source venv/bin/activate
pip install -r requirements.txt
cd model; ./get_model.sh; cd ..
./neural-style.py --content_image <path_to_content_img> --style_image <path_to_style_img>

Acknowledgements