All the outputs are blank,when we use our models to do expriment.We guess the problem is in the configuration of absoluteBeamWidith relativeBeamWidith and language_weight.So,how to configure them?
PS:our models have only 2 words!
any help is appreciated.Thank u in advance.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
All the outputs are blank,when we use our models to do expriment.We guess the problem is in the configuration of absoluteBeamWidith relativeBeamWidith and language_weight.So,how to configure them?
PS:our models have only 2 words!
any help is appreciated.Thank u in advance.
From the documentation available at:
http://cmusphinx.sourceforge.net/sphinx4/
Follow link to "Understanding Sphinx-4 Configuration Management", then "Sphinx-4 Configuration Management".
Under the header "Global properties", there's an example:
<config>
<property name="absoluteBeam" value="1000"/>
<property name="relativeBeam" value="1E-10"/>
</config>
You can check the name of the property in the page http://cmusphinx.sourceforge.net/sphinx4/javadoc/constant-values.html
--Evandro