Hi, dear all,
I am trying to get a measure to see how accurate my recognition result is in pocketsphinx Android application. So I want to retrieve the confidence score in the application. How can I get this measure? Thank you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You can access confidence score with ps_seg_iter iterator, you can also get utterance confidence with ps_get_prob function. All those functions are wrapped in java API but they are not exposed in android API. You need to edit pocketsphinx-android to expose corresponding decoding methods in API.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, dear all,
I am trying to get a measure to see how accurate my recognition result is in pocketsphinx Android application. So I want to retrieve the confidence score in the application. How can I get this measure? Thank you.
Sorry to post again. But could anyone tell me how can I get the measure in Android?
Thank you.
You can access confidence score with ps_seg_iter iterator, you can also get utterance confidence with ps_get_prob function. All those functions are wrapped in java API but they are not exposed in android API. You need to edit pocketsphinx-android to expose corresponding decoding methods in API.