I'm separately force-aligning individual words from the hypothesis given by
s3_decode for an utterance (by first cutting as per word boundaries). But even
for some of the "correctly" recognized words, s3_align gives the error "Final state not reached"
Is this because of the initial and final 3 frames allotted to <sil> by
s3_align? Even with insert_sil = 0, the aligner still forcefully aligns first
3 and last 3 frames as SIL.
Thanks.</sil>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I don't think it's easy. The rpobelm is context dependency. You need to
understand which triphone to put on the boundary and sil exactly helps to
avoid the question. Assertions should be easy to fix but the problem is to
make everything right.
I would like to point you to ps_alignment API from pocketsphinx, it should be
easier to deal with.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
I'm separately force-aligning individual words from the hypothesis given by
s3_decode for an utterance (by first cutting as per word boundaries). But even
for some of the "correctly" recognized words, s3_align gives the error
"Final state not reached"
Is this because of the initial and final 3 frames allotted to <sil> by
s3_align? Even with insert_sil = 0, the aligner still forcefully aligns first
3 and last 3 frames as SIL.
Thanks.</sil>
Insert_sil controls silence phones between words, not boundaries
first silence is inserted in the sources
Hi,
Is there a workaround for this?
I commented line in your post and also following lines
But it crashes during running. My understanding of aligner code is not that
good.
Thanks.
Hello
I don't think it's easy. The rpobelm is context dependency. You need to
understand which triphone to put on the boundary and sil exactly helps to
avoid the question. Assertions should be easy to fix but the problem is to
make everything right.
I would like to point you to ps_alignment API from pocketsphinx, it should be
easier to deal with.
Hello
This is a patch to do that in s3_align
Hey,
Thanks a lot, it works!