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 page
https://pytorch.org/audio/main/generated/torchaudio.functional.melscale_fbanks.html
The "Returns" says
the applied result would be A * melscale_fbanks(A.size(-1), ...).
A * melscale_fbanks(A.size(-1), ...)
I believe the multiplication should have been matrix multiplication i.e. @
@
Change * to @. Or more explicitly, write torch.matmul()
*
torch.matmul()
The text was updated successfully, but these errors were encountered:
Fix typo in melscale_fbank
bf5bb2d
Resolves #3486
Fix: #3487
Sorry, something went wrong.
135cb7b
Successfully merging a pull request may close this issue.
📚 The doc issue
In this page
https://pytorch.org/audio/main/generated/torchaudio.functional.melscale_fbanks.html
The "Returns" says
I believe the multiplication should have been matrix multiplication i.e.
@
Suggest a potential alternative/fix
Change
*
to@
. Or more explicitly, writetorch.matmul()
The text was updated successfully, but these errors were encountered: