diff --git a/Jenkinsfile b/Jenkinsfile index 3e246f6..876d57f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -13,6 +13,7 @@ pipeline { { steps { sh label:"", script:"bash ./count.sh" + archiveArtifacts 'test.txt' archiveArtifacts 'lines_number.txt' archiveArtifacts 'wer_results.txt' archiveArtifacts 'wer.txt' diff --git a/count.sh b/count.sh index 47f16ec..ec9920e 100755 --- a/count.sh +++ b/count.sh @@ -8,7 +8,7 @@ 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 ref.trn trn -h hyp.trn trn -e utf-8 -i rm -o all stdout | grep "Scores:" | sed 's/Scores: (#C #S #D #I) // ' | awk '{ print ($2+$3+$4)/($1+$2+$3)}' > wer_results.txt +sclite -f 0 -r ref.trn trn -h hyp.trn trn -e utf-8 -i rm -o all stdout > test.txt -awk '{ all+=$0;count++ } END { print all/count }' wer_results.txt > wer.txt -awk ' $1==0 {score[0]++} $1!=0 {score[1]++} END { s=score[0]+score[1]; print(score[0]/s)*100}' wer_results.txt > srr.txt +#awk '{ all+=$0;count++ } END { print all/count }' wer_results.txt > wer.txt +#awk ' $1==0 {score[0]++} $1!=0 {score[1]++} END { s=score[0]+score[1]; print(score[0]/s)*100}' wer_results.txt > srr.txt