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
This issue is to solve #625 (comment)
I want to address the warning
warnings.warn("FP16 is not supported on CPU; using FP32 instead")
The following can help with this warning: openai/whisper#301
The text was updated successfully, but these errors were encountered:
My idea is to specify fp16=False when GPU is not supported. I think torch.cuda.is_available() could work as argument for the parameter fp16.
fp16=False
fp16
torch.cuda.is_available()
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
This issue is to solve #625 (comment)
I want to address the warning
The following can help with this warning: openai/whisper#301
The text was updated successfully, but these errors were encountered: