I've downloaded the CVS tree from sourceforge, and got it
to compile on Windows (using Visual C++ 6.0) without much trouble. I'm
adapting the "allphone-test.csh.in" script for use in a Windows batch file.
This theoretically runs allphone.exe by setting up a bunch of input variables.
I'm having trouble with the input data files. The original script has:
set datadir = @prefix@share/sphinx2
set dictfile = $datadir/dict/nov94/h1c1-94.dic
set phonefile = $datadir/dict/nov94/h1c1-94.phone
set mapfile = $datadir/dict/nov94/h1c1-94.map
set modeldir = $datadir/hmm/nov93/1pd/10000-g
set sendumpfile = $datadir/sendump/nov93/1pd/10000-g.sen
Since none of these files exist in CVS I have to guess as to what to use.
Here's what I came up with:
set datadir="l:\sphinx2\model"
set dictfile="%datadir%\lm\turtle\demo.dic"
set phonefile="%datadir%\hmm\6k\phone"
set mapfile="%datadir%\hmm\6k\map"
set modeldir="%datadir%\hmm\6k"
set sendumpfile = %datadir%\hmm\6k\sendump
I'm not sure this is right but for example there seems to be no dictionary in hmm/6k.
Are these assumptions correct?
Thanks,
--Eric
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2000-10-24
Did you have any luck or get any answers?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi all,
I've downloaded the CVS tree from sourceforge, and got it
to compile on Windows (using Visual C++ 6.0) without much trouble. I'm
adapting the "allphone-test.csh.in" script for use in a Windows batch file.
This theoretically runs allphone.exe by setting up a bunch of input variables.
I'm having trouble with the input data files. The original script has:
set datadir = @prefix@share/sphinx2
set dictfile = $datadir/dict/nov94/h1c1-94.dic
set phonefile = $datadir/dict/nov94/h1c1-94.phone
set mapfile = $datadir/dict/nov94/h1c1-94.map
set modeldir = $datadir/hmm/nov93/1pd/10000-g
set sendumpfile = $datadir/sendump/nov93/1pd/10000-g.sen
Since none of these files exist in CVS I have to guess as to what to use.
Here's what I came up with:
set datadir="l:\sphinx2\model"
set dictfile="%datadir%\lm\turtle\demo.dic"
set phonefile="%datadir%\hmm\6k\phone"
set mapfile="%datadir%\hmm\6k\map"
set modeldir="%datadir%\hmm\6k"
set sendumpfile = %datadir%\hmm\6k\sendump
I'm not sure this is right but for example there seems to be no dictionary in hmm/6k.
Are these assumptions correct?
Thanks,
--Eric
Did you have any luck or get any answers?
Afraid not.