VoxForge
hi all,
HVite -l '*' -o SWT -b SILENCE -C config/config1 -a -H hmms/hmm7/macros -H hmms/hmm7/hmmdefs -i labels/aligned.mlf -m -t 350.0 -y lab -I lables/trainwords.mlf -S train.scp dict/dict3 list/monophones1
After excuting the above code, i get the following error:
ERROR [+8220] LatticeFromLabels: Word sil not defined in dictionary
where the errors occured??
my gram file:
$char = A | B | C;
$digit= n1 | n2 | n3;
(SENT-START($char $char $digit $digit) SENT-END)
my dict3 file:
n1 y sp
n2 e sp
n3 s sp
A a sp
B b sp
C c sp
SENT-END [] sil
SENT-START [] sil
SILENCE sil
my monophenes1 file:
a
b
c
e
sil
sp
s
y
You are performing forced alignment using that command. You aren't even using the attached grammar in your command. The word "sil" is probably present in the "trainwords.mlf" file and missing in the dictionary (as per error message). What are you actually trying to do?