-
Hi, I am trying to use the whisper module within a container and as I am accessing the load_model attribute. How to resolve this issue. Kindly help.
AttributeError: module 'whisper' has no attribute 'load_model' |
Beta Was this translation helpful? Give feedback.
Replies: 8 comments 20 replies
-
Hi @learngvrk |
Beta Was this translation helpful? Give feedback.
-
Thank you for your response. Your suggestion did solve the problem.
Ranjith
…On Tue, Oct 11, 2022, 4:36 PM Laurent Egbakou ***@***.***> wrote:
Hi @learngvrk <https://github.com/learngvrk>
Make sure you install whisper using the command pip install git+
https://github.com/openai/whisper.git
Take a look at this similar question that was answered in the discussion:
#143 <#143>
—
Reply to this email directly, view it on GitHub
<#251 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ANO4DG2ELV4F2XOBXS65WGTWCXMU3ANCNFSM6AAAAAAQ5UQT6Y>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
I follow you advise to solve the issue but after installing whisper this command, I got this error: I'm using Apple MacBook Air M1 |
Beta Was this translation helpful? Give feedback.
-
Hi team, Could someone tell me if they have implemented it in EC2 AWS in ubuntu, I get error "AttributeError: module 'whisper' has no attribute 'load_model' when trying to run it, I reinstall it and it keeps coming out, I hope someone can help me? |
Beta Was this translation helpful? Give feedback.
-
Hello, I used both
None of them are working. Please suggest how to load custom model? Thanks. |
Beta Was this translation helpful? Give feedback.
-
i encountered this error too,
anybody fix this ? |
Beta Was this translation helpful? Give feedback.
-
Hello, I get this error, I am using wisper in google colab, it says the following: ( module stable_whisper has no attribute results_to_sentence_srt ) what can I do? Could someone help me, I cannot generate the srt files |
Beta Was this translation helpful? Give feedback.
-
If anyone still having an issue - I had a stupid noob mistake - I had a file 'whisper.py' in the same directory as the script I was trying to run that uses 'import whisper'. So it simply used this file as a module input and needless to say - crashed. |
Beta Was this translation helpful? Give feedback.
Hi @learngvrk
Make sure you install whisper using the command
pip install git+https://github.com/openai/whisper.git
Take a look at this similar question that was answered in the discussion: #143