s416422-mlworkshops/script.sh

15 lines
558 B
Bash
Raw Normal View History

2019-04-26 13:54:36 +02:00
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < $1 > reference_a.trn
2019-04-26 13:22:43 +02:00
cut -f2 $1 > reference.txt
cut -f3 $1 > hypothesis.txt
2019-04-26 13:33:54 +02:00
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
2019-04-26 13:22:43 +02:00
2019-04-26 14:33:29 +02:00
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout > WER_SSR.txt
2019-04-26 13:02:03 +02:00
2019-04-26 14:39:17 +02:00
cat WER_SSR.txt | grep -oP '(?<=Scores: \(#C #S #D #I\) ).*' > values.txt
2019-04-26 14:59:57 +02:00
for i in `cat values.txt`; do c=$((($2+$3+$4)/($2+$3+$1))); echo $c ;done; > values_WER.txt
2019-04-26 14:56:46 +02:00