poprawa kumulatywnego dopisywania wer
This commit is contained in:
parent
030e81f4f2
commit
08fd6be0cd
@ -7,7 +7,9 @@ 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.txt
|
||||
tail -n 50 wer.txt >> wer_tmp.txt
|
||||
rm wer.txt
|
||||
mv wer_tmp.txt wer.txt
|
||||
tail -n 50 srr.txt >> srr.txt
|
||||
awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.txt
|
||||
awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv >> srr.txt
|
Loading…
Reference in New Issue
Block a user