I want to slightly modify helloworld.java of Sphinx-4 and use it for pronunciation evaluation.
For this I want to know two things:
What do logTotalScore and logAcoustic Score represent. (If possible, please explain with an example.)
Does HelloWorld use HMM anywhere?
Like the names, logTotalScore is the combined score of acoustic score (scored against the acoustic model) and language score (against the language source). logAcousticScore is the acoustic score. In helloworld sample, the language score is from the jsgf grammar.
HMM is used (WSJ model, as configured in helloworld.config.xml).