9 lines
369 B
Bash
9 lines
369 B
Bash
|
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
|
||
|
|
||
|
sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout
|
||
|
|
||
|
python3 countmetrics.py
|