From ddf597275d4fd8331e8a027fee0a0538c74aa63b Mon Sep 17 00:00:00 2001 From: s460941 Date: Thu, 23 Apr 2020 20:47:04 +0200 Subject: [PATCH] metrics --- count.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/count.sh b/count.sh index 10e10ab..e148407 100755 --- a/count.sh +++ b/count.sh @@ -12,4 +12,4 @@ sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all std awk 'BEGIN{FS=OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{print ($2 + $3 + $4)/($2 + $3 + $1) }' > 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 +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