ptwt

Differentiable fast wavelet transforms in PyTorch with GPU support.

https://github.com/v0lta/pytorch-wavelet-toolbox

Science Score: 54.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    3 of 8 committers (37.5%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (14.2%) to scientific vocabulary

Keywords

fast-wavelet-transform matrix-fwt pytorch wavelet wavelet-analysis wavelet-packets wavelet-transform
Last synced: 6 months ago · JSON representation ·

Repository

Differentiable fast wavelet transforms in PyTorch with GPU support.

Basic Info
Statistics
  • Stars: 380
  • Watchers: 5
  • Forks: 39
  • Open Issues: 2
  • Releases: 11
Topics
fast-wavelet-transform matrix-fwt pytorch wavelet wavelet-analysis wavelet-packets wavelet-transform
Created about 5 years ago · Last pushed 6 months ago
Metadata Files
Readme Contributing License Citation

README.rst

******************************************
Pytorch Wavelet Toolbox (`ptwt`) 
******************************************

.. image:: https://github.com/v0lta/PyTorch-Wavelet-Toolbox/actions/workflows/tests.yml/badge.svg 
    :target: https://github.com/v0lta/PyTorch-Wavelet-Toolbox/actions/workflows/tests.yml
    :alt: GitHub Actions

.. image:: https://readthedocs.org/projects/pytorch-wavelet-toolbox/badge/?version=latest
    :target: https://pytorch-wavelet-toolbox.readthedocs.io/en/latest/
    :alt: Documentation Status

.. image:: https://img.shields.io/pypi/pyversions/ptwt
    :target: https://pypi.org/project/ptwt/
    :alt: PyPI Versions

.. image:: https://img.shields.io/pypi/v/ptwt
    :target: https://pypi.org/project/ptwt/
    :alt: PyPI - Project

.. image:: https://img.shields.io/pypi/l/ptwt
    :target: https://github.com/v0lta/PyTorch-Wavelet-Toolbox/blob/main/LICENSE
    :alt: PyPI - License

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black
    :alt: Black code style

.. image:: https://static.pepy.tech/personalized-badge/ptwt?period=total&units=international_system&left_color=grey&right_color=brightgreen&left_text=Downloads
 :target: https://pepy.tech/project/ptwt


Welcome to the PyTorch wavelet toolbox. This package implements discrete-(DWT) as well as continuous-(CWT) wavelet transforms:

- the fast wavelet transform (fwt) via ``wavedec`` and its inverse by providing the ``waverec`` function,
- the two-dimensional fwt is called ``wavedec2`` the synthesis counterpart ``waverec2``,
- ``wavedec3`` and ``waverec3`` cover the three-dimensional analysis and synthesis case,
- ``fswavedec2``, ``fswavedec3``, ``fswaverec2`` and ``fswaverec3`` support separable transformations.
- ``MatrixWavedec`` and ``MatrixWaverec`` implement sparse-matrix-based fast wavelet transforms with boundary filters,
- 2d sparse-matrix transforms with separable & non-separable boundary filters are available,
- ``MatrixWavedec3`` and ``MatrixWaverec3`` allow separable 3D-fwt's with boundary filters.
- ``cwt`` computes a one-dimensional continuous forward transform,
- single and two-dimensional wavelet packet forward and backward transforms are available via the ``WaveletPacket`` and ``WaveletPacket2D`` objects,
- finally, this package provides adaptive wavelet support (experimental).

This toolbox extends `PyWavelets `_. In addition to boundary wavelets, we provide GPU and gradient support via a PyTorch backend.
Complete documentation of our Python API is available at: https://pytorch-wavelet-toolbox.readthedocs.io/en/latest

This toolbox is independent work. Meta or the PyTorch team have not endorsed it.

**Installation**

Install the toolbox via pip or clone this repository. In order to use ``pip``, type:

.. code-block:: sh

    pip install ptwt
  

You can remove it later by typing ``pip uninstall ptwt``.

Example usage:
""""""""""""""
**Single dimensional transform**

One way to compute fast wavelet transforms is to rely on padding and
convolution. Consider the following example: 

.. code-block:: python

  import torch
  import numpy as np
  import pywt
  import ptwt  # use "from src import ptwt" for a cloned the repo
  
  # generate an input of even length.
  data = np.array([0, 1, 2, 3, 4, 5, 6, 7, 7, 6, 5, 4, 3, 2, 1, 0])
  data_torch = torch.from_numpy(data.astype(np.float32))
  wavelet = pywt.Wavelet('haar')
  
  # compare the forward fwt coefficients
  print(pywt.wavedec(data, wavelet, mode='zero', level=2))
  print(ptwt.wavedec(data_torch, wavelet, mode='zero', level=2))
  
  # invert the fwt.
  print(ptwt.waverec(ptwt.wavedec(data_torch, wavelet, mode='zero'),
                     wavelet))


The functions ``wavedec`` and ``waverec`` compute the 1d-fwt and its inverse.
Internally both rely on ``conv1d``, and its transposed counterpart ``conv_transpose1d``
from the ``torch.nn.functional`` module. This toolbox also supports discrete wavelets
see ``pywt.wavelist(kind='discrete')``. I have tested
Daubechies-Wavelets ``db-x`` and symlets ``sym-x``, are usually a good starting point. 

**Two-dimensional transform**

Analog to the 1d-case ``wavedec2`` and ``waverec2`` rely on 
``conv2d``, and its transposed counterpart ``conv_transpose2d``.
To test an example, run:


.. code-block:: python

  import ptwt, torch
  from scipy import datasets

  data = torch.tensor(datasets.face(), dtype=torch.float64)
  # permute [H, W, C] -> [C, H, W]
  data = data.permute(2, 0, 1)
  coefficients = ptwt.wavedec2(face, "haar", level=2, mode="constant")
  reconstruction = ptwt.waverec2(coefficients, "haar")
  torch.max(torch.abs(face - reconstruction))


**Speed tests**

Speed tests comparing our tools to related libraries are `available `_.


**Boundary Wavelets with Sparse-Matrices**

In addition to convolution and padding approaches,
sparse-matrix-based code with boundary wavelet support is available.
In contrast to padding, boundary wavelets do not add extra pixels at 
the edges.
Internally, boundary wavelet support relies on ``torch.sparse.mm``.
Generate 1d sparse matrix forward and backward transforms with the
``MatrixWavedec`` and ``MatrixWaverec`` classes.
Reconsidering the 1d case, try:

.. code-block:: python

  import torch
  import pywt
  import ptwt  # use "from src import ptwt" for a cloned the repo
  
  # generate an input of even length.
  data = torch.arange(16, dtype=torch.float32)
  # forward
  matrix_wavedec = ptwt.MatrixWavedec(haar, level=2)
  coeff = matrix_wavedec(data)
  print(coeff)
  # backward 
  matrix_waverec = ptwt.MatrixWaverec("haar")
  rec = matrix_waverec(coeff)
  print(rec)


The process for the 2d transforms ``MatrixWavedec2``, ``MatrixWaverec2`` works similarly.
By default, a separable transformation is used.
To use a non-separable transformation, pass ``separable=False`` to ``MatrixWavedec2`` and ``MatrixWaverec2``.
Separable transformations use a 1D transformation along both axes, which might be faster since fewer matrix entries
have to be orthogonalized.


**Adaptive Wavelets**

Experimental code to train an adaptive wavelet layer in PyTorch is available in the ``examples`` folder. In addition to static wavelets
from pywt,

- Adaptive product-filters
- and optimizable orthogonal-wavelets are supported.

See https://github.com/v0lta/PyTorch-Wavelet-Toolbox/tree/main/examples/network_compression/ for a complete implementation.


**Testing**

The ``tests`` folder contains multiple tests to allow independent verification of this toolbox.
The GitHub workflow executes a subset of all tests for efficiency reasons. 
After cloning the repository, moving into the main directory, and installing ``nox`` with ``pip install nox`` run

.. code-block:: sh

  nox --session test



for all existing tests.

Citation
""""""""

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

.. code-block::

  @article{JMLR:v25:23-0636,
    author  = {Moritz Wolter and Felix Blanke and Jochen Garcke and Charles Tapley Hoyt},
    title   = {ptwt - The PyTorch Wavelet Toolbox},
    journal = {Journal of Machine Learning Research},
    year    = {2024},
    volume  = {25},
    number  = {80},
    pages   = {1--7},
    url     = {http://jmlr.org/papers/v25/23-0636.html}
  }

Owner

  • Name: Moritz Wolter
  • Login: v0lta
  • Kind: user
  • Location: Bonn, Germany
  • Company: High-Performance Computing and Analytics Lab, Bonn University

Citation (CITATION.bib)

@article{JMLR:v25:23-0636,
  author  = {Moritz Wolter and Felix Blanke and Jochen Garcke and Charles Tapley Hoyt},
  title   = {ptwt - The PyTorch Wavelet Toolbox},
  journal = {Journal of Machine Learning Research},
  year    = {2024},
  volume  = {25},
  number  = {80},
  pages   = {1--7},
  url     = {http://jmlr.org/papers/v25/23-0636.html}
}

GitHub Events

Total
  • Issues event: 8
  • Watch event: 89
  • Delete event: 4
  • Issue comment event: 8
  • Member event: 1
  • Push event: 29
  • Pull request event: 6
  • Fork event: 2
  • Create event: 5
Last Year
  • Issues event: 8
  • Watch event: 89
  • Delete event: 4
  • Issue comment event: 8
  • Member event: 1
  • Push event: 29
  • Pull request event: 6
  • Fork event: 2
  • Create event: 5

Committers

Last synced: almost 3 years ago

All Time
  • Total Commits: 594
  • Total Committers: 8
  • Avg Commits per committer: 74.25
  • Development Distribution Score (DDS): 0.32
Top Committers
Name Email Commits
Moritz Wolter m****z@w****h 404
Felix Blanke f****e@u****e 78
Moritz Wolter v****a@u****m 56
v0lta m****r@s****e 20
Felix Blanke f****e@s****e 19
Charles Tapley Hoyt c****t@g****m 13
Felix Blanke 4****e@u****m 3
Felix Divo 4****o@u****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 33
  • Total pull requests: 85
  • Average time to close issues: 2 months
  • Average time to close pull requests: 11 days
  • Total issue authors: 25
  • Total pull request authors: 7
  • Average comments per issue: 3.61
  • Average comments per pull request: 1.02
  • Merged pull requests: 76
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 4
  • Pull requests: 5
  • Average time to close issues: 2 months
  • Average time to close pull requests: 3 days
  • Issue authors: 4
  • Pull request authors: 2
  • Average comments per issue: 1.5
  • Average comments per pull request: 0.2
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • v0lta (5)
  • felixblanke (4)
  • urja02 (2)
  • abeyang00 (1)
  • homerjed (1)
  • zqOuO (1)
  • lijun2005 (1)
  • xuesongnie (1)
  • yutian-wang (1)
  • david-andrew (1)
  • matciotola (1)
  • vectorzwt (1)
  • mahfuzalhasan (1)
  • mmlyj (1)
  • RaoulHeese (1)
Pull Request Authors
  • v0lta (48)
  • felixblanke (22)
  • cthoyt (18)
  • NiclasPi (2)
  • felixdivo (1)
  • w1718w (1)
  • loki-veera (1)
Top Labels
Issue Labels
enhancement (9) question (5) bug (4) invalid (4)
Pull Request Labels
enhancement (20) bug (5) invalid (4) documentation (4)

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 8,064 last-month
  • Total dependent packages: 3
  • Total dependent repositories: 1
  • Total versions: 32
  • Total maintainers: 1
pypi.org: ptwt

Differentiable and gpu enabled fast wavelet transforms in PyTorch

  • Versions: 32
  • Dependent Packages: 3
  • Dependent Repositories: 1
  • Downloads: 8,064 Last month
Rankings
Dependent packages count: 4.7%
Stargazers count: 5.0%
Downloads: 6.0%
Forks count: 7.2%
Average: 8.9%
Dependent repos count: 21.7%
Maintainers (1)
Last synced: 6 months ago

Dependencies

.github/workflows/tests.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
docs/requirements.txt pypi
  • ptwt *
setup.py pypi