-
Notifications
You must be signed in to change notification settings - Fork 257
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noise suppression fine tune #246
Comments
|
Hi, I found the result is good while using your website. Best regards, |
Hi, I am checking the model inputs and found some differences.
But I found when I send the same signal to df.analysis or df_features in enhance.py, I get different spec with this stft function. Another question, is dB rescale important for ERB? Thanks, |
Code looks good, not sure where you get some differences. dB scaling is important since the raw amplitude does not correlate well with human loudness perception and is thus not a good feature. |
Hi, I try to use this command in enhance.py. Also, use
But these two functions get different values of |
i have the same question, so are you guess about answer? for the stream process mode, every process i only have 480 samples(48k ssamplerate and 10ms data), if i had 480 samples delay and 480 samples overlap, neither vobis window and np.fft and torch.fft, it was different result with spec in df.analysis, |
Hi, FFT in torch will multiply (nfft ^ -0.5) while normalized default is True, and IFFT will diverse it. |
Hello. I would like to know how the df.analysis function in df_feature work. I directly spec = torch.stft( audio, n_fft=n_fft, hop_length=hop, window=torch.Tensor(vorbis_window(n_fft)), return_complex=True, normalized=False, center=False ).transpose(1, 2), but the result I got is different from that of the df.analysis. Could you please explain the possible reasons ? Thank you. |
Hi Rikorose,
I'm trying to fine tune some effects, do you have any suggestions for these points?
Thanks,
Aaron
The text was updated successfully, but these errors were encountered: