I found that it is not creating this directory (gv2.cd_cont_200) at all, however when I manually rename the directory gv2\model_parameters\gv2.ci_cont to the required one it work fine and give good results.
Notice that these are very very small wav files, that is why I have set $CFG_CD_TRAIN = 'no';
Kindly help.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is an expected behaviour. When you set cd_train to no, cd model is not created. You need to use ci_cont model instead, you can change corresponding value on sphinx_train.cfg file.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I am on Windows 7 64 bit. Trying to build accoustic model. PocketSphinx decoder init failed when it do not find gv2.cd_cont_200.
Wav and other files could be downloaded from here https://www.dropbox.com/s/k0reigot8h5nsvi/gv2.zip?dl=0
I found that it is not creating this directory (gv2.cd_cont_200) at all, however when I manually rename the directory gv2\model_parameters\gv2.ci_cont to the required one it work fine and give good results.
Notice that these are very very small wav files, that is why I have set $CFG_CD_TRAIN = 'no';
Kindly help.
This is an expected behaviour. When you set cd_train to no, cd model is not created. You need to use ci_cont model instead, you can change corresponding value on sphinx_train.cfg file.
Thanks Nick.
$DEC_CFG_MODEL_NAME is the variable that should be adjusted.
I've commented out following line
$DEC_CFG_MODEL_NAME = "$CFG_EXPTNAME.cd_${CFG_DIRLABEL}_${CFG_N_TIED_STATES}";
to
$DEC_CFG_MODEL_NAME = "$CFG_EXPTNAME.ci_${CFG_DIRLABEL}";
and it worked.