Related to Voice Recognition Google API android
Voice Recognition API produces a list of suggestions after listening a voice.I wanted to know , does the most probable suggestion always comes on the top?or it is just random.. I need this to make calculations for determining acc开发者_运维知识库uracy.
if u using
new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
and
data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
will always sorts best matches first
Yes
精彩评论