-
Notifications
You must be signed in to change notification settings - Fork 64
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
bug: from_pretrained() gives HTTP Error 401: Unauthorized #137
Comments
Installing the latest version via Since it seems like some pretty basic functionality is broken in the pypi release version, it might be good to push another release to pypi or add something to the README to warn users. Not sure if I could help w /the pypi stuff, but I'd be happy to submit a PR to update the README. |
That didn't work for me. That just gives me the error:
|
Seems like this library is unmaintained. I was able to resolve this with
and import whisper
model = whisper.load_model("tiny.en")
result = model.transcribe("audio.mp3")
print(result["text"]) |
Describe the bug
Calling
Whisper.from_pretrained("base")
gives an error:When I try to manually open the url (
https://huggingface.co/datasets/ggerganov/whisper.cpp/resolve/main/ggml-base.bin
) in the browser, hugging face is popping up a login dialog.To reproduce
pip install whispercpp
from whispercpp import Whisper
whisper = Whisper.from_pretrained("base")
Expected behavior
No errors
Environment
python: 3.10
platform: OSX 13 (apple silicon)
The text was updated successfully, but these errors were encountered: