Zaktualizuj 'script.sh'

This commit is contained in:
Jędrzej Furmann 2020-04-03 13:48:10 +00:00
parent 29e3383f96
commit e9158016fb

View File

@ -9,4 +9,4 @@ awk 'BEGIN{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.txt
awk '{ print (grep "^0$" wer.txt | wc -l)*100 / (wc -l lines_number.txt)}' > srr.txt
awk ' $1 == 0 { temp[0]++ } $1 != 0 { temp[1]++ }END { t = temp[0] + temp[1]; print (temp[0]/t) * 100}' wer.txt > srr.txt