Metadata-Version: 2.1
Name: stylish
Version: 0.2.0
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
Requires-Dist: click (<8,>=7)
Requires-Dist: colorama (<1,>=0.3.9)
Requires-Dist: imageio (<3,>=2.3.0)
Requires-Dist: numpy (<2,>=1.11.2)
Requires-Dist: pystache (<1,>=0.5.4)
Requires-Dist: requests (<3,>=2)
Requires-Dist: scipy (<2,>=0.1.0)
Requires-Dist: sawmill (<1,>=0.2.1)
Requires-Dist: scikit-image (<1,>=0.15.0)
Requires-Dist: tensorflow (<2,>=1)
Provides-Extra: dev
Requires-Dist: changelog (<1,>=0.4) ; extra == 'dev'
Requires-Dist: sphinx (<2,>=1.6) ; extra == 'dev'
Requires-Dist: sphinx-click (>=1.2.0) ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme (<1,>=0.1.6) ; extra == 'dev'
Requires-Dist: pytest-runner (<3,>=2.7) ; extra == 'dev'
Requires-Dist: pytest (<5,>=4.4.0) ; extra == 'dev'
Requires-Dist: pytest-mock (<2,>=1.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: changelog (<1,>=0.4) ; extra == 'doc'
Requires-Dist: sphinx (<2,>=1.6) ; extra == 'doc'
Requires-Dist: sphinx-click (>=1.2.0) ; extra == 'doc'
Requires-Dist: sphinx-rtd-theme (<1,>=0.1.6) ; extra == 'doc'
Provides-Extra: test
Requires-Dist: pytest-runner (<3,>=2.7) ; extra == 'test'
Requires-Dist: pytest (<5,>=4.4.0) ; extra == 'test'
Requires-Dist: pytest-mock (<2,>=1.1) ; extra == 'test'
Requires-Dist: pytest-xdist (<2,>=1.1) ; extra == 'test'
Requires-Dist: pytest-cov (<3,>=2) ; extra == 'test'

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

.. image:: https://img.shields.io/pypi/v/stylish.svg
        :target: https://pypi.python.org/pypi/stylish

.. image:: https://readthedocs.org/projects/stylish/badge/?version=stable
        :target: http://stylish.readthedocs.io/en/stable
        :alt: Documentation Status

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/


