search.c and searchlat.c
As my system,i use pocketsphinx0.4.1and sphinxbase0.3 buliding a speech
recongnition system.
my question is during search, what mean is
FWDTREE in uttproc_end_utt() and FWDFLAT in uttproc_result() ?
In my system, i use the ARM9 CPU to complete the operation. It calculation
floating point very slowly.
So i want to delet uttproc_result() and pick up the result from FWDTREE
(ignore FWDFLAT and BESTPATH) .
I know this will reduce the recognition rate, so i want to know what the
details in uttproc_end_utt() and uttproc_result() .
would someone help me ? Thank you.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
search.c and searchlat.c
As my system,i use pocketsphinx0.4.1and sphinxbase0.3 buliding a speech
recongnition system.
my question is during search, what mean is
FWDTREE in uttproc_end_utt() and FWDFLAT in uttproc_result() ?
In my system, i use the ARM9 CPU to complete the operation. It calculation
floating point very slowly.
So i want to delet uttproc_result() and pick up the result from FWDTREE
(ignore FWDFLAT and BESTPATH) .
I know this will reduce the recognition rate, so i want to know what the
details in uttproc_end_utt() and uttproc_result() .
would someone help me ? Thank you.
Ps: I use the arguments "-fwdflat no -bestpath no -agc none" , then the result
is only rely on FWDTREE .