We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In this line:
python_speech_features/python_speech_features/base.py
Line 169 in 9a2d76c
I think you are assuming that np.floor(t+1) = np.round(t), but that is not true. I think your want:
bin = numpy.round((nfft)*mel2hz(melpoints)/samplerate) bin = numpy.floor((nfft+0.5)*mel2hz(melpoints)/samplerate)
This is a minor point because they often give the same and it doesn't matter in practice. I just found this point a little confusing in your write-up.
Thanks for the blogpost and this code!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In this line:
python_speech_features/python_speech_features/base.py
Line 169 in 9a2d76c
I think you are assuming that np.floor(t+1) = np.round(t), but that is not true. I think your want:
bin = numpy.round((nfft)*mel2hz(melpoints)/samplerate)
bin = numpy.floor((nfft+0.5)*mel2hz(melpoints)/samplerate)
This is a minor point because they often give the same and it doesn't matter in practice. I just found this point a little confusing in your write-up.
Thanks for the blogpost and this code!
The text was updated successfully, but these errors were encountered: