Closed thoschm closed 1 year ago
Dear @thoschm , the v0.0.8 branch addresses this now. After running:
pip install git+ssh://git@github.com/v0lta/Jax-Wavelet-Toolbox@v0.0.8
The image example below should work:
import pywt, scipy.datasets
import jaxwt as jwt
import jax.numpy as jnp
face = jnp.transpose(scipy.datasets.face(), [2, 0, 1])
face = face.astype(jnp.float32)
transformed = jwt.wavedec2(face, pywt.Wavelet("haar"))
jwt.waverec2(transformed, pywt.Wavelet("haar"))
All the best, Moritz
Dear @v0lta,
this is amazing! Thanks for incorporating this into 0.0.8 👍
You're the best, Have a great day, Thomas
Hi @v0lta ,
the following call will give an exception for me:
Exception:
Are there plans to support other dtypes than float64?
Best, Thomas