VoxForge
Hello guys,
I have tried to run the demo to test the HTK by VoxFroge under Cygwin but when I run the follwoign command:
$ cd HTKDemo
$ ./runDemo configs/monplainM1S3
I get the following error message:
"must be in directory HTKDemo to run this script"
It is odd as when I run it, i am already in the directory HTKDemo!
Any idea what might be wrong?
The installation went totally fine and I did test it by running both "HVite" and "julian". even the gui interface appears by running "HSlab a_name.sig"
I appreciate your help
>$ ./runDemo configs/monplainM1S3
line 82 of runDemo expects you to be in a directory with the name 'HTKDemo' in its path:
($ENV{PWD} =~ /HTKDemo$/) || die "Must be in directory HTKDemo to run this script\n";
What do you get when you do a 'pwd' command in cygwin?
all is well upto the installation of HTk 'n' julian
when i would like to run this command in HTKDemo directory
./runDemo configs/monoPlainM1S3
i got this error .....how can i rectify this error....
Can't open configs/monoPlainM1S3: No such file or directory at ./runDemo line 381.
Cannot find proto config file /proto_s_m_c.pcf
I had this same problem, after reading the HTKDemo readme file, found that it was due to using the command for the Windows install on Linux.
$ cd HTKDemo
$ perl runDemo.pl configs\monPlainM1S1.dcf
^--- is the command for Windows and gives your error when you try on Linux.
Try using:
$ cd HTKDemo
$ ./runDemo configs/monPlainM1S1.dcf
HI
I also got the message:
Writing HMMSet
Writing HMMDef to proto/S
Writing HMMDef to proto/C
Writing HMMDef to proto/V
Writing HMMDef to proto/N
Writing HMMDef to proto/L
Can't open hmms/hmm.0
After running
./runDemo configs/monPlainM1S1.dcf
Try to help me