From 6ea807b2e0cdac0c6be6a4fdd9980b0f524d7b31 Mon Sep 17 00:00:00 2001 From: s460941 Date: Thu, 23 Apr 2020 21:17:05 +0200 Subject: [PATCH] metrics --- count.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/count.sh b/count.sh index ecbeaeb..deaa3ad 100755 --- a/count.sh +++ b/count.sh @@ -8,8 +8,8 @@ cut -f3 wikiniews_results.tsv > reference.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 | grep "Scores:" > scores +sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep Scores > Scores -awk 'BEGIN{FS=OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{print ($2+$3+$4)/($1+$2+$3) }' > wer_results.txt +awk 'BEGIN{FS=OFS="\t"}{print $6, $7, $8, $9}' < Scores | awk '{print ($2+$3+$4)/($1+$2+$3) }' > wer_results.txt awk '{ all+=$0;count++ } END { print all/count }' wer_results.txt > wer.txt awk ' $1==0 {score[0]++} $1!=0 {score[1]++} END { s=score[0]+score[1]; print(score[0]/s)*100}' wer_results.txt > srr.txt