2020-04-03 19:06:28 +02:00
|
|
|
cut -f2 'wikiniews_results.tsv' > hypothesis.txt
|
|
|
|
cut -f3 'wikiniews_results.tsv' > reference.txt
|
|
|
|
|
|
|
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.trn
|
|
|
|
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
|
|
|
|
|
2020-04-03 21:52:32 +02:00
|
|
|
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout > forWerCount.txt
|
2020-04-03 19:06:28 +02:00
|
|
|
|
|
|
|
python3 countmetrics.py
|