Zaktualizuj 'licz_linie_a_potem_metryki.sh'

This commit is contained in:
Monika Janocha 2020-04-21 13:01:16 +00:00
parent 8d5332643e
commit 077f0ef9d3

View File

@ -9,10 +9,13 @@ cut -f3 wikiniews_results.tsv > reference.txt
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
#Sclite sluzy do obliczenia WER. Kod ponizej z pkt 3.Metryki
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
#wer - procent niepoprawnie rozpoznanych wyrazów
awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.txt
#srr - procent całkowicie poprawnie rozpoznanych zdań
awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv >> srr.txt