-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Added basic Julius STT engine and vocabcompiler #285
Conversation
Yup, sounds good to give people the option. I support |
I added documentation for this here. |
Not going to test this on the Pi, but I trust this worked for you on Arch so good to merge in |
Added basic Julius STT engine and vocabcompiler
I tried the julius plugin and couldn't get it running out of the box. fix_def_julius_compile_vocabulary_patch.txt Fixing this I'm stuck with the following error:
It seems like it is tried to call "mkdfa.pl". Is it missing?? edit |
one more issue. "Jasper" as default keyword is dropped when compared with the dictionary because comparison is case sensitive. I added two ways of fixing this:
|
Hey guys, I'm very new to all this and I'm having trouble setting up Julius-STT. Is there any step-by-step guide out there that can help me? Or is there any other STT that works better than the sphinx? I have some accent and sphinx doesn't recognizes 40% of the words I say lol. |
This adds a STT/Vocabulary implementation for the Open-Source Large Vocabulary CSR Engine Julius to Jasper.
Basically, recognition is working, but the freely available speaker-independent acoustic models offer a recognition rate that is probably too bad to use without custom training.
We COULD include this and state in the documentation that you need a custom trained acoustic model (you can define it via
profile
) and that we do not provide support for this step (and link to this tutorial).@crm416 @shbhrsaha Do we want to merge this in on the above conditions?