Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

GitHub Actions Documentation Status PyPI Versions PyPI - Project PyPI - License Black code style PyPi - downloads

Differentiable and GPU-enabled fast wavelet transforms in JAX.

Features

  • wavedec and waverec implement 1d analysis and synthesis transforms.

  • Similarly, wavedec2 and waverec2 provide 2d transform support.

  • The cwt-function supports 1d continuous wavelet transforms.

  • The WaveletPacket object supports 1d wavelet packet transforms.

  • WaveletPacket2d implements two-dimensional wavelet packet transforms.

  • swt and iswt allow 1d-stationary transformations.

This toolbox extends PyWavelets. We additionally provide GPU and gradient support via a Jax backend.

Installation

To install Jax, head over to https://github.com/google/jax#installation and follow the procedure described there. Afterward, type pip install jaxwt to install the Jax-Wavelet-Toolbox. You can uninstall it later by typing pip uninstall jaxwt.

Documentation

Complete documentation of all toolbox functions is available at readthedocs.

Transform Examples:

To compute a one-dimensional fast wavelet transform, consider the code snippet below:

import jax.numpy as jnp
import jaxwt as jwt

import pywt
import numpy as np;

# generate an input of even length.
data = jnp.array([0., 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 3, 2, 1, 0])

# compare the forward fwt coefficients
print(pywt.wavedec(np.array(data), 'haar', mode='zero', level=2))
print(jwt.wavedec(data, 'haar', mode='zero', level=2))

# invert the fwt.
print(jwt.waverec(jwt.wavedec(data, 'haar', mode='zero', level=2),
                  'haar'))

The snipped also evaluates the pywt implementation to demonstrate that the coefficients are the same. Use jaxwt if you require gradient or GPU support.

The process for two-dimensional fast wavelet transforms works similarly:

import jaxwt as jwt
import jax.numpy as jnp
from scipy.datasets import face

image = jnp.transpose(
    face(), [2, 0, 1]).astype(jnp.float32)
transformed = jwt.wavedec2(image, "haar",
                           level=2, mode="reflect")
reconstruction = jwt.waverec2(transformed, "haar")
jnp.max(jnp.abs(image - reconstruction))

jaxwt allows transforming batched data. The example above moves the color channel to the front because wavedec2 transforms the last two axes by default. We can avoid doing so by using the axes argument. Consider the batched example below:

import jaxwt as jwt
import jax.numpy as jnp
from scipy.datasets import face

image = jnp.stack(
    [face(), face(), face()], axis=0
     ).astype(jnp.float32)
transformed = jwt.wavedec2(image, "haar",
                           level=2, mode="reflect",
                           axes=(1,2))
reconstruction = jwt.waverec2(transformed, "haar", axes=(1,2))
jnp.max(jnp.abs(image - reconstruction))

For more code examples, follow the documentation link above or visit the examples folder.

Testing

Unit tests are handled by nox. Clone the repository and run it with the following:

$ pip install nox
$ git clone https://github.com/v0lta/Jax-Wavelet-Toolbox
$ cd Jax-Wavelet-Toolbox
$ nox -s test

Goals

  • In the spirit of Jax, the aim is to be 100% pywt compatible. Whenever possible, interfaces should be the same results identical.

64-Bit floating-point numbers

If you need 64-bit floating point support, set the Jax config flag:

from jax.config import config
config.update("jax_enable_x64", True)

Citation

If you use this work in a scientific context, please cite the following:

@phdthesis{handle:20.500.11811/9245,
  urn: https://nbn-resolving.org/urn:nbn:de:hbz:5-63361,
  author = {{Moritz Wolter}},
  title = {Frequency Domain Methods in Recurrent Neural Networks for Sequential Data Processing},
  school = {Rheinische Friedrich-Wilhelms-Universität Bonn},
  year = 2021,
  month = jul,
  url = {https://hdl.handle.net/20.500.11811/9245}
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jaxwt-0.1.1.dev0.tar.gz (28.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

jaxwt-0.1.1.dev0-py3-none-any.whl (27.0 kB view details)

Uploaded Python 3

File details

Details for the file jaxwt-0.1.1.dev0.tar.gz.

File metadata

  • Download URL: jaxwt-0.1.1.dev0.tar.gz
  • Upload date:
  • Size: 28.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for jaxwt-0.1.1.dev0.tar.gz
Algorithm Hash digest
SHA256 ebabfdfffdbe924a8805ccaae5514ed9cc6c70c0b4a09d111cfc342143a3fefa
MD5 76eec771a9216dd37fc6ed1d5e336a65
BLAKE2b-256 726f7eec6a3919905704f5fd0a65813b1f5ae74331685d1208c5b0c0f5e3ae7e

See more details on using hashes here.

File details

Details for the file jaxwt-0.1.1.dev0-py3-none-any.whl.

File metadata

  • Download URL: jaxwt-0.1.1.dev0-py3-none-any.whl
  • Upload date:
  • Size: 27.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.12

File hashes

Hashes for jaxwt-0.1.1.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 9e42c4d8074f70d02380c73752fe402651841d083e9b7178dfba9c2a2e59e54b
MD5 2a6c45ae83c4342c6f8f931f10e65883
BLAKE2b-256 7060095c2c7f40a95d4616e5df8c32832ba82316bf12218735fefc767ccf259e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page