From b7142b5772bb83ca98a3a6abb6e65e98670a73e7 Mon Sep 17 00:00:00 2001 From: Kuba Kowalczyk Date: Fri, 26 Apr 2019 12:57:31 +0200 Subject: [PATCH] sclite --- counter.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/counter.sh b/counter.sh index a7f233b..3b97757 100644 --- a/counter.sh +++ b/counter.sh @@ -1,3 +1,9 @@ +while IFS=$'\t' read -r -a myArray +do + echo "${myArray[0]}" + echo "${myArray[1]}" + echo "${myArray[2]}" +done < wikiniews_results.tsv awk '{print gensub("^\\*\\*", "\\\\**", "g", $1) "\t(sp1_"NR")"}' < wikiniews_results.tsv > reference.trn awk '{print gensub("^\\*\\*", "\\\\**", "g", $2) "\t(sp1_"NR")"}' < wikiniews_results.tsv > hypothesis.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