Framework for Neural Style Transfer built upon PyTorch
Project description
package |
|
---|---|
citation |
|
code |
|
tests |
|
docs |
pystiche
pystiche (pronounced /ˈpaɪˈstiʃ/ ) is a framework for Neural Style Transfer (NST) built upon PyTorch. The name of the project is a pun on pastiche meaning:
A pastiche is a work of visual art […] that imitates the style or character of the work of one or more other artists. Unlike parody, pastiche celebrates, rather than mocks, the work it imitates.
pystiche has similar goals as Deep Learning (DL) frameworks such as PyTorch:
- Accessibility
Starting off with NST can be quite overwhelming due to the sheer amount of techniques one has to know and be able to deploy. pystiche aims to provide an easy-to-use interface that reduces the necessary prior knowledge about NST and DL to a minimum.
- Reproducibility
Implementing NST from scratch is not only inconvenient but also error-prone. pystiche aims to provide reusable tools that let developers focus on their ideas rather than worrying about bugs in everything around it.
Installation
pystiche is a proper Python package and can be installed with pip. The latest release can be installed with
pip install pystiche
Usage
pystiche makes it easy to define the optimization criterion for an NST task fully compatible with PyTorch. For example, the banner above was generated with the following criterion:
from pystiche import enc, loss
mle = enc.vgg19_multi_layer_encoder()
perceptual_loss = loss.PerceptualLoss(
content_loss=loss.FeatureReconstructionLoss(
mle.extract_encoder("relu4_2")
),
style_loss=loss.MultiLayerEncodingLoss(
mle,
("relu1_1", "relu2_1", "relu3_1", "relu4_1", "relu5_1"),
lambda encoder, layer_weight: ops.GramOLoss(
encoder, score_weight=layer_weight
),
score_weight=1e3,
),
)
For the full example, head over to the example NST with pystiche.
Documentation
For
the API reference,
or anything else, head over to the documentation.
Citation
If you use this software, please cite it as
@Article{ML2020,
author = {Meier, Philip and Lohweg, Volker},
journal = {Journal of Open Source Software {JOSS}},
title = {pystiche: A Framework for Neural Style Transfer},
year = {2020},
doi = {10.21105/joss.02761},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pystiche-1.0.1.tar.gz
.
File metadata
- Download URL: pystiche-1.0.1.tar.gz
- Upload date:
- Size: 61.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.6.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca22cb07a46fcf0164127564bcc7ced918d3025d172357e14dbe014236d42f71 |
|
MD5 | 2adffb80b7532e12235b8816b5bafeab |
|
BLAKE2b-256 | 4ae67728a6aae6f7d0eb0f33088d7448d0bc49cc4d1584a83035f83502208917 |
File details
Details for the file pystiche-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pystiche-1.0.1-py3-none-any.whl
- Upload date:
- Size: 67.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.1 CPython/3.6.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac80910e647a747c1a80def19d7406294c1f2aaec6f656ed5949291c43fb4f4f |
|
MD5 | 5b1f87ca85eb2b9926ba2c7d26dc255b |
|
BLAKE2b-256 | f95aac09fdb154c9bb3cee88c03e640a584b720253a46aa5b4b77c6a376a61fa |