We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
tgt_language undefined
main
Looks like there's been a bad merge at some point, or something. This code is currently in whisper_online_server.py:
whisper_online_server.py
tokenizer = create_tokenizer(tgt_language)
But the definition of tgt_language has been moved into asr_factory() in whisper_online.py, so that breaks the server startup.
tgt_language
asr_factory()
whisper_online.py
It's a simple fix, and I've done it in #80 here but it might want pulling out to its own patch.
The text was updated successfully, but these errors were encountered:
I'm lost, I hope it's fixed when I merged #80.
Sorry, something went wrong.
Looks like it. If I search for tgt_language I only find it in the asr_factory function so that should be fixed now.
asr_factory
No branches or pull requests
Looks like there's been a bad merge at some point, or something. This code is currently in
whisper_online_server.py
:But the definition of
tgt_language
has been moved intoasr_factory()
inwhisper_online.py
, so that breaks the server startup.It's a simple fix, and I've done it in #80 here but it might want pulling out to its own patch.
The text was updated successfully, but these errors were encountered: