From f54951d94845d6bf14b2607be1cb761427cad185 Mon Sep 17 00:00:00 2001 From: Adrianna Zaleska Date: Sun, 19 Apr 2020 22:16:30 +0200 Subject: [PATCH] tail 50->49 --- script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.sh b/script.sh index 4a930ef..45d3518 100644 --- a/script.sh +++ b/script.sh @@ -7,10 +7,10 @@ awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep Scores > scores awk 'BEGIN{OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{ print ($2 + $3 + $4)/($2 + $3 + $1) }' > wer.tsv paste wikiniews_results.tsv wer.tsv > wikiniews_results_with_wer.tsv -tail -n 50 wer.txt >> wer_tmp.txt +tail -n 49 wer.txt >> wer_tmp.txt rm wer.txt mv wer_tmp.txt wer.txt -tail -n 50 srr.txt >> srr_tmp.txt +tail -n 49 srr.txt >> srr_tmp.txt rm srr.txt mv srr_tmp.txt srr.txt awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.txt