torch-stft icon indicating copy to clipboard operation
torch-stft copied to clipboard

An STFT/iSTFT for PyTorch.

Results 10 torch-stft issues
Sort by recently updated
recently updated
newest added

Hi, dear author, i came across your project by chance, and i am newbie in audio processing, now we already have `librosa.stft`, i am curious what is the benefit or...

I use the exact example code as you provided in the README, but I caught error like this: ``` Traceback (most recent call last): File "my_test.py", line 29, in print(np.mean((output...

Hey, I was wondering if we can port some refactored form of this into pytorch?

Hi. Is it possible to use your package to apply butterworth filters (or other filters) on timeseries? What would be the syntax? Thanks so much, Cat

One test has odd behavior: the tolerance for the phase between the librosa STFT and this STFT has to be high for passing. Right now it's set to 1e-2. But...

Hey Prem, This snippet looks familiar! :) You don't need to invert the DFT matrix to get the inverse transform. You can do this instead: ``` # Transform constants sz,hp...

Hi! Thanks for this work! I'm using this in a model and when I try to export the model to onnx, I get: ` Missing key(s) in state_dict: "model_g.dec.stft.forward_basis", "model_g.dec.stft.inverse_basis".`...

After I changed it to DFT, I found that the values of fmin and fmax would affect the magnitude of the amplitude. For example, I know that the frequency of...