tail
This commit is contained in:
parent
0b32c04ea9
commit
57f650a2cf
@ -2,6 +2,13 @@ wc -l wikiniews_results.tsv > liczbalinijek.txt
|
||||
|
||||
cut -f2 wikiniews_results.tsv > hypothesis.txt
|
||||
cut -f3 wikiniews_results.tsv > reference.txt
|
||||
|
||||
mv wer.txt wer1.txt
|
||||
mv srr.txt srr1.txt
|
||||
|
||||
cat wer1.txt | tail -n 49 > wer.txt
|
||||
cat srr1.txt | tail -n 49 > srr.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 -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep Scores > scores
|
||||
@ -11,3 +18,4 @@ paste wikiniews_results.tsv wer.tsv > wikiniews_results_with_wer.tsv
|
||||
|
||||
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