VoxForge
hi all,
HVite -l '*' -o SWT -b SILENCE -C config/train.config -a -H am/hmm8/hmmdefs -i config/aligned.mlf -m -t 250.0 -y lab -I data_prep/words.mlf -S config/train.scp config/sin_asr1.dict config/monophn1.list > log/HVite_log
After excuting the above code, i got an empty HVite_log? What is the reason for this?
what do you get when you run:
HVite -l '*' -o SWT -b SILENCE -C config/train.config -a -H am/hmm8/hmmdefs -i config/aligned.mlf -m -t 250.0 -y lab -I data_prep/words.mlf -S config/train.scp config/sin_asr1.dict config/monophn1.list
without the redirect '> log/HVite_log'
As I asked above, what do you get when you run:
HVite -l '*' -o SWT -b SILENCE -C config/train.config -a -H am/hmm8/hmmdefs -i config/aligned.mlf -m -t 250.0 -y lab -I data_prep/words.mlf -S config/train.scp config/sin_asr1.dict config/monophn1.list
without the redirect '> log/HVite_log'
Note: the '>' is called the redirect operator:
Output Redirection
The most common use of Redirection is to redirect the output (that normally goes to the terminal) from a command to a file instead. This is known as Output Redirection. This is generally used when you get a lot of output when you execute your program. Often you see that screens scroll past very rapidly. You could get all the output in a file and then even transfer that file elsewhere or mail it to someone.
The way to redirect the output is by using the ' > ' operator in shell command you enter. This is shown below. The ' > ' symbol is known as the output redirection operator. Any command that outputs its results to the screen can have its output sent to a file.
hi all,
HVite -l '*' -o SWT -b SILENCE -C config/train.config -a -H am/hmm8/hmmdefs -i config/aligned.mlf -m -t 250.0 -y lab -I data_prep/words.mlf -S config/train.scp config/sin_asr1.dict config/monophn1.list > log/HVite_log
After excuting the above code, i got an empty HVite_log? What is the reason for this?
The same a part of kmaclean explained :'> log/HVite_log' will write everything on window process into HVire_log. But you don't use parameter "-T 1" so don't anything happen on your screen, so HVire_log is empty.