Replies: 1 comment 1 reply
-
In running this, I get the error: Traceback (most recent call last):
File "/Users/myusername/test_batched.py", line 33, in <module>
language_info = model.detect_language_multi_segment(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'WhisperModel' object has no attribute 'detect_language_multi_segment' Commenting out all relevant parts that relate to that error, we find another error: Traceback (most recent call last):
File "/Users/myusername/test_batched.py", line 39, in <module>
batched_model = BatchedInferencePipeline(
^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: BatchedInferencePipeline.__init__() got an unexpected keyword argument 'vad_device' |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After using and testing Batched Faster Whisper, I think this is a case with the proper arguments to get a good resulting transcript.
Note: Do not use "initial_prompt" because it will reduce the transcription accuracy, we should fine-tune Faster Whisper with proper nouns and terminologies.
Beta Was this translation helpful? Give feedback.
All reactions