diff --git a/lines_counter.sh b/lines_counter.sh index 22ce6df..2cc53b4 100644 --- a/lines_counter.sh +++ b/lines_counter.sh @@ -1 +1,9 @@ -wc -l wikiniews_results.tsv > lines_number.txt \ No newline at end of file +wc -l wikiniews_results.tsv > lines_number.txt + +cut -f 2 wikiniews_results.tsv > hypothesis.txt +cut -f 3 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 \ No newline at end of file