-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
404 Client Error for speaker-embedding.onnx #666
Comments
I also have this error. This seems like a simple fix! |
I have this error as well |
Fix: It said to:
I did:
And now it works, I can fully transcribe and diarize a sound file, I have not tested if this still has the problem from 499 where diarization is slow and runs on the CPU. There is probably a way to pass in the device using python code or maybe just hack the code. |
hi @eliich, your pyannote.audio version should match with the diarization pipeline model. please chech it via
then use: diarize_model = whisperx.DiarizationPipeline(model_name="pyannote/speaker-diarization-3.0", use_auth_token=hf_token, device=self.device)
diarize_segments = diarize_model(audio)
result = whisperx.assign_word_speakers(diarize_segments, result) let me know if it helps! |
Commented out line 218 in
|
The above exception was the direct cause of the following exception:
Is the speaker-embedding.onnx file still available at the specified URL?
Could there be a permission issue or has the file been moved?
The text was updated successfully, but these errors were encountered: