You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,8 +45,8 @@ Welcome to the PyTorch wavelet toolbox. This package implements:
45
45
- single and two-dimensional wavelet packet forward and backward transforms are available via the ``WaveletPacket`` and ``WaveletPacket2D`` objects,
46
46
- finally, this package provides adaptive wavelet support (experimental).
47
47
48
-
This toolbox supports pywt-wavelets. Complete documentation is available:
49
-
https://pytorch-wavelet-toolbox.readthedocs.io/
48
+
This toolbox extends `PyWavelets <https://pywavelets.readthedocs.io/en/latest/>`_ . We additionally provide GPU and gradient support via a PyTorch backend.
49
+
Complete documentation is available at: https://pytorch-wavelet-toolbox.readthedocs.io/
50
50
51
51
52
52
**Installation**
@@ -149,8 +149,8 @@ Reconsidering the 1d case, try:
149
149
150
150
151
151
The process for the 2d transforms ``MatrixWavedec2``, ``MatrixWaverec2`` works similarly.
152
-
By default, a non-separable transformation is used.
153
-
To use a separable transformation, pass ``separable=True`` to ``MatrixWavedec2`` and ``MatrixWaverec2``.
152
+
By default, a separable transformation is used.
153
+
To use a non-separable transformation, pass ``separable=False`` to ``MatrixWavedec2`` and ``MatrixWaverec2``.
154
154
Separable transformations use a 1d transformation along both axes, which might be faster since fewer matrix entries
0 commit comments