[Subject Prev][Subject Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hts-users:01130] Re: running demo for hts slt voice


Lazaridis Alexandros wrote:

Hello

I am running the demo slt voice in hts. The procedure ends but I am not sure if everything is working properly.

These are the last lines in cygwin when I am running the demo (make)

The problem is that no .pdf files or .inf or .win files are created. And no wav files are synthesized.

Am I doing something wrong?


Hi,

You can read the print out message at the end. The training is running in background. Check the process if the training has finished. e.g. 'top' command on Linux.

regards,

Jin


…………..

………….

…………….

utts/cmu_us_arctic_slt_b0531.utt

utts/cmu_us_arctic_slt_b0532.utt

utts/cmu_us_arctic_slt_b0533.utt

utts/cmu_us_arctic_slt_b0534.utt

utts/cmu_us_arctic_slt_b0535.utt

utts/cmu_us_arctic_slt_b0536.utt

utts/cmu_us_arctic_slt_b0537.utt

utts/cmu_us_arctic_slt_b0538.utt

utts/cmu_us_arctic_slt_b0539.utt

rm -f tmp

# Generating monophone and fullcontext Master Label Files (MLF)

echo "#!MLF!#" > labels/mono.mlf

echo "\"*/cmu_us_arctic_slt_*.lab\" -> \"/cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT/data/labels/mono\"" >> labels/mono.mlf

echo "#!MLF!#" > labels/full.mlf

echo "\"*/cmu_us_arctic_slt_*.lab\" -> \"/cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT/data/labels/full\"" >> labels/full.mlf

mkdir -p lists

# Generating a fullcntext model list occurred in the training data

rm -f tmp

for lab in labels/full/cmu_us_arctic_slt_*.lab; do \

if [ -s ${lab} -a -s labels/mono/`basename ${lab}` -a -s cmp/`basename ${lab} .lab`.cmp ]; then \

sed -e "s/.* //g" ${lab} >> tmp; \

fi \

done

sort -u tmp > lists/full.list

rm -f tmp

# Generating a fullcontext model list including unseen models

rm -f tmp

cat lists/full.list > tmp

for lab in labels/gen/*.lab; do \

sed -e "s/.* //g" ${lab} >> tmp; \

done

sort -u tmp > lists/full_all.list

rm -f tmp

# Generating a monophone list

rm -f tmp

for lab in labels/mono/cmu_us_arctic_slt_*.lab; do \

if [ -s ${lab} -a -s labels/full/`basename ${lab}` -a -s cmp/`basename ${lab} .lab`.cmp ]; then \

sed -e "s/.* //g" ${lab} >> tmp; \

fi \

done

sort -u tmp > lists/mono.list

rm -f tmp

mkdir -p scp

# Generating a trainig data script

rm -f scp/train.scp

for cmp in /cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT/data/cmp/cmu_us_arctic_slt_*.cmp; do \

if [ -s ${cmp} -a -s labels/mono/`basename ${cmp} .cmp`.lab -a -s labels/full/`basename ${cmp} .cmp`.lab ]; then \

echo ${cmp} >> scp/train.scp; \

fi \

done

# Generating a generation label script

rm -f scp/gen.scp

for lab in /cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT/data/labels/gen/*.lab; do \

echo ${lab} >> scp/gen.scp; \

done

make[1]: Leaving directory `/cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT/data'

echo "Running a training/synthesis perl script (Training.pl) in background...."

Running a training/synthesis perl script (Training.pl) in background....

/usr/bin/perl scripts/Training.pl scripts/Config.pm > log 2>&1 &

alaza@lazani /cygdrive/c/htk/HTS-demo_CMU-ARCTIC-SLT

$

Thank you in advance

Alexandros Lazaridis

###############################################

Lazaridis Alexandros

Electrical and Computer Engineer

PhD Student

Artificial Intelligence Group
Wire Communications Laboratory
Department of Electrical & Computer Engineering
University of Patras
Patras 265 00, Greece

Email: alaza@xxxxxxxxxxxxxxxxx <BLOCKED::blocked::mailto:alaza@xxxxxxxxxxxxxxxxx>

Tel: +30 2610 996496

Fax: +30 2610 997336

http://www.wcl.ee.upatras.gr/ai/ <BLOCKED::blocked::http://www.wcl.ee.upatras.gr/ai/>

###############################################



Follow-Ups
[hts-users:01131] Re: running demo for hts slt voice, Yufeng Hao
References
[hts-users:01129] running demo for hts slt voice, Lazaridis Alexandros