s416422-mlworkshops/script.sh
2019-04-26 14:00:45 +02:00

13 lines
472 B
Bash

awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < $1 > reference_a.trn
cut -f2 $1 > reference.txt
cut -f3 $1 > hypothesis.txt
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout > WER_SRR.txt
echo sclite -i wsj -r reference.trn -h hypothesis.trn -e utf-8 -i > WER_SRR2.txt