I need to convert my language model file from arpa format to DMP format. To do so, I need to use the lm3g2dmp tool. As I've read in the "The Hyeroglyphs" tutorial, the way to use this tool is:
lm3g2dmp simple.arpa
But when I downloaded the tool, I found a C project...
So, what do I have to do to run the tool as it's pointed above ??
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
I need to convert my language model file from arpa format to DMP format. To do so, I need to use the lm3g2dmp tool. As I've read in the "The Hyeroglyphs" tutorial, the way to use this tool is:
lm3g2dmp simple.arpa
But when I downloaded the tool, I found a C project...
So, what do I have to do to run the tool as it's pointed above ??
Thanks
Hi,
if Hieroglyphs is out of date, what kindly documentation is on date ??
Only source and doxygen docs are up to date :)
Hi, Hieroglyphs is out of date.
You should use sphinx3_lm_convert instead. It is part of Sphinx3, so if you have compiled Sphinx3, you will have it.
Run it like this:
sphinx3_lm_convert -i simple.arpa -o simple.arpa.DMP
(In the next release it will be in SphinxBase instead)
Thanks !!