tail 50->49

This commit is contained in:
Adrianna Zaleska 2020-04-19 22:16:30 +02:00
parent 74dc19755c
commit f54951d948

View File

@ -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