asteroid-filterbanks
asteroid-filterbanks copied to clipboard
Asteroid's filterbanks :rocket:
one of the benefits of 1d conv based filterbanks is that they can be more easily exported for deployment. testing `TorchSTFTFB` reveals that onnx export doesn't currently work and its...
Thanks for this project, very impressive contribution! I have a question on the hibert transform from the code asteroid-filterbanks/asteroid_filterbanks/analytic_free_fb.py : ft_f = rfft(self._filters, 1, normalized=True) hft_f = conj(ft_f) hft_f =...
Might be much faster (and more precise) for longer FFT kernels. See [here](https://github.com/fkodom/fft-conv-pytorch).
Looks like this doesn't work with mixed precision. Any idea what it might take to add this support?
This repo showed up on my radar because I am working on [a change ](https://github.com/NixOS/nixpkgs/pull/251418)to how pre-commit is packaged in nixpkgs. Initially I thought that this repo might shed some...