Thank you for the answer
Those issues came when I'm using continuous in training configuration. When I changed that to semi-continuous , I got no issues , but WER was higher than continuous one.
I got another issue when using the model to integrate with Visual Studio 2015 . I'm using it to build Windows Phone App using PocketSphinx. I used Toine's project in github as reference.
I put my model_parameters folder and dict file to project and when deploy the project, I got issue saying "Couldn't create decoder". I've attach my model and dict file also the screenshot showing error. Thank you
I put my model_parameters folder and dict file to project
I see you changed number of gaussians in your model which you need to revert to default recommended by tutorial.
You need to share a whole model training folder, not just a model parameters.
I put my model_parameters folder and dict file to project and when deploy the project, I got issue saying "Couldn't create decoder". I've attach my model and dict file also the screenshot showing error. Thank you
You can check decoder log for details, in Windows it is stored in
if ($CFG_HMM_TYPE eq '.semi.') {
$CFG_DIRLABEL = 'semi';
# Four stream features for PocketSphinx
$CFG_FEATURE = "s2_4x";
$CFG_NUM_STREAMS = 4;
$CFG_INITIAL_NUM_DENSITIES = 8;
$CFG_FINAL_NUM_DENSITIES = 8;
die "For semi continuous models, the initial and final models have the same density".
if ($CFG_INITIAL_NUM_DENSITIES != $CFG_FINAL_NUM_DENSITIES);
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, Nickolay. Thank you. Already fix that and no error on decoder anymore in my WP project.
But, Error (again) came up when speechRecognizer.AddGrammarSearch method called. I put my .gram there as parameter, but I wasn't sure that my jsgf is correct.
The error said that "fault adding grammar search: Digits".
Errors.log from local storage provided in attachment.
The error log is incomplete because it exited too early. You can add a call of fflush(stderr) to err.c in sphinxbase in order to flush messages as they printed. Then you'll see a complete error.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I did training with my 2 Hrs data and got these error
Have somebody had a similar error ? I found similar thread, but no answer
I don't have any idea where my mistake is... What should I do ?
Thank you
Based on the message there were issues in training, you need to provide the model training folder in a zip file to get help on this issue.
Thank you for the answer
Those issues came when I'm using continuous in training configuration. When I changed that to semi-continuous , I got no issues , but WER was higher than continuous one.
I got another issue when using the model to integrate with Visual Studio 2015 . I'm using it to build Windows Phone App using PocketSphinx. I used Toine's project in github as reference.
I put my model_parameters folder and dict file to project and when deploy the project, I got issue saying "Couldn't create decoder". I've attach my model and dict file also the screenshot showing error. Thank you
I see you changed number of gaussians in your model which you need to revert to default recommended by tutorial.
You need to share a whole model training folder, not just a model parameters.
You can check decoder log for details, in Windows it is stored in
This is my whole model training folder : https://onedrive.live.com/redir?resid=80BC91E0116D9664!63571&authkey=!AOgSWzFJanKFSsU&ithint=file%2czip
I forgot whether I changed that number of gaussian or not. But what is the recommended number for those number and where I can change it ?
Thank you
Last edit: Hamdan Prakoso 2016-06-01
These two should be 256 instead of 8.
Hi, Nickolay. Thank you. Already fix that and no error on decoder anymore in my WP project.
But, Error (again) came up when speechRecognizer.AddGrammarSearch method called. I put my .gram there as parameter, but I wasn't sure that my jsgf is correct.
The error said that "fault adding grammar search: Digits".
Errors.log from local storage provided in attachment.
The error log is incomplete because it exited too early. You can add a call of
fflush(stderr)
to err.c in sphinxbase in order to flush messages as they printed. Then you'll see a complete error.In
err_logfp_cb
function.