VoxForge
Hi,
I doing this for Odia language recognition.In the Step-1, I have taken the sample.grammar file and sample.voca file(contains some Odia words with it's phones).I executed with the mkdfa.jl file.It generated the corresponding sample.dfa, sample.term and sample.dict.But I am not finding any thing readable from sample.dict file(only some "?" symbols are there ).I think it might be the problem of unicode system.
So, How to fix this problem?
Thanks in advance.
Prithviraj
>I think it might be the problem of unicode system.
Julius was originally written for Japanese speech recognition, so it should work...
Try building the dictionary with the Julius version of the same program (in perl): mkdfa.pl
It (mkdfa.pl) works fine for the sample.grammar and sample.voca given in the tutorial.Not working for our modified sample.grammar and sample.voca file.
sample.grammar
S : NS_B SENT NS_E
SENT: DIGIT
>How to fix this problem.
You might try compiling Julius from source and see if the mkfa program (written in c and called by mkdfa.pl) in the gramtools folder will process the default character encodings of your system.
Thanks Kmaclean.
I edited the grammar and voca file in Notepad++ which supports Unicode format.Hence using mkdfa.pl/mkdf.jl, I am able to generate the corresponding dict,dfa and term files.
Prithviraj