Metadata-Version: 2.1
Name: faststyle
Version: 0.0.4
Summary: Fast style transfer API
Home-page: https://github.com/lgvaz/faststyle
Author: lgvaz
Author-email: lgvaz42@gmail.com
License: Apache Software License 2.0
Keywords: Fast style transfer
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: fastai (>=2.0.16)
Requires-Dist: fastcore (>=1.2.5)
Requires-Dist: kornia
Requires-Dist: torch (==1.6.0)
Requires-Dist: torchvision (==0.7)

# faststyle
> Faststyle aims to provide an easy and modular interface to Image to Image problems based on [feature loss](https://arxiv.org/abs/1603.08155).


## Install

Making sure you have a working installation of [fastai](https://github.com/fastai/fastai). You can then install the library by doing:
```
pip install faststyle
```

You can instead use a editable install, which is more recommended since the lib is chaging a lot:
```
git clone https://github.com/lgvaz/faststyle.git
cd faststyle
pip install -e .
```

## Contributing

There are still tons of things to do in the library, you're welcome to contribute. Some of the tasks are listed in the issues, feel free to contact me directly for more info =)  .

The library is built with [nbdev](https://github.com/fastai/nbdev), I'm following the coding style used by fastai (the only difference being that I use 2 spaces for indentation instead of 4), take a look at the cotribution guideline [here](https://github.com/fastai/nbdev/blob/master/CONTRIBUTING.md).


