Replies: 1 comment
-
The original whisper uses something similar to a dictionary while faster-whisper uses a generator. The output is different. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I paln to swap between faster-whisper and whisper transcribe function when selected? My code looks like this:
result = WHISPER_MODEL.transcribe("audio.wav", **options)
where WHISPER_MODEL will be either faster-whisper of whisper based on user selection.
My question: Will the output have the same format/structure? At the moment I get an error like this when I want to access the output result:
The code works fine with whisper.
Beta Was this translation helpful? Give feedback.
All reactions