Metadata-Version: 2.1
Name: stylish
Version: 0.1.3
Summary: Style transfer using deep neural network.
Home-page: http://github.com/buddly27/stylish
Author: Jeremy Retailleau
License: UNKNOWN
Keywords: tensorflow,style,transfer,CNN
Platform: UNKNOWN
Provides-Extra: dev
Provides-Extra: doc
Provides-Extra: test
Requires-Dist: tensorflow (<2,>=1)
Requires-Dist: numpy (<2,>=1.11.2)
Requires-Dist: scipy (<2,>=0.1.0)
Requires-Dist: imageio (<3,>=2.3.0)
Provides-Extra: dev
Requires-Dist: sphinx (<2,>=1.2.2); extra == 'dev'
Requires-Dist: sphinx-rtd-theme (<1,>=0.1.6); extra == 'dev'
Requires-Dist: lowdown (<2,>=0.1.0); extra == 'dev'
Requires-Dist: sphinxcontrib-autoprogram (!=0.1.3,<1,>=0.1.2); extra == 'dev'
Requires-Dist: pytest-runner (<3,>=2.7); extra == 'dev'
Requires-Dist: pytest (<4,>=3); extra == 'dev'
Requires-Dist: pytest-mock (<1,>=0.11); extra == 'dev'
Requires-Dist: pytest-catchlog (<2,>=1); extra == 'dev'
Requires-Dist: pytest-xdist (<2,>=1.1); extra == 'dev'
Requires-Dist: pytest-cov (<3,>=2); extra == 'dev'
Provides-Extra: doc
Requires-Dist: sphinx (<2,>=1.2.2); extra == 'doc'
Requires-Dist: sphinx-rtd-theme (<1,>=0.1.6); extra == 'doc'
Requires-Dist: lowdown (<2,>=0.1.0); extra == 'doc'
Requires-Dist: sphinxcontrib-autoprogram (!=0.1.3,<1,>=0.1.2); extra == 'doc'
Provides-Extra: test
Requires-Dist: pytest-runner (<3,>=2.7); extra == 'test'
Requires-Dist: pytest (<4,>=3); extra == 'test'
Requires-Dist: pytest-mock (<1,>=0.11); extra == 'test'
Requires-Dist: pytest-catchlog (<2,>=1); extra == 'test'
Requires-Dist: pytest-xdist (<2,>=1.1); extra == 'test'
Requires-Dist: pytest-cov (<3,>=2); extra == 'test'

#######
Stylish
#######

Style transfer using deep neural network.

**********
References
**********

This implementation is based off of a combination of:

- `A Neural Algorithm of Artistic Style <https://arxiv.org/abs/1508.06576>`_ by
  Gatys et al. (2015)
- `Perceptual Losses for Real-Time Style Transfer and Super-Resolution
  <https://arxiv.org/abs/1603.08155>`_ by Johnson et al. (2016)
- `Instance Normalization: The Missing Ingredient for Fast Stylization
  <https://arxiv.org/abs/1607.08022>`_ by Ulyanov et al. (2017)

The project borrow some logic from Logan Engstrom's `Fast Style Transfer
<https://github.com/lengstrom/fast-style-transfer>`_ and Justin Johnson's
`Fast Neural Style <https://github.com/jcjohnson/fast-neural-style>`_.

*************
Documentation
*************

Full documentation, including installation and setup guides, can be found at
http://stylish.readthedocs.io/en/stable/


