2020-04-03 12:33:01 +02:00
|
|
|
wc -l wikiniews_results.tsv > liczba_linii.txt
|
|
|
|
|
2020-04-03 13:11:38 +02:00
|
|
|
cut -f3 wikiniews_results.tsv > reference.txt
|
|
|
|
cut -f2 wikiniews_results.tsv > hypothesis.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
|
2020-04-03 12:33:46 +02:00
|
|
|
|
2020-04-03 13:19:26 +02:00
|
|
|
head -15 reference.trn
|
|
|
|
head -15 hypothesis.trn
|
|
|
|
|