From 78c858d16b951de01ec92fdc4f9c98b019d2040c Mon Sep 17 00:00:00 2001 From: Ufnow Date: Wed, 22 Apr 2020 00:24:54 +0200 Subject: [PATCH] adasd --- Jenkinsfile | 3 +++ script.sh | 13 ++++++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c1392cf..8dcee5c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,6 +25,9 @@ pipeline { archiveArtifacts 'hypothesis.trn' archiveArtifacts 'hypothesis.txt' archiveArtifacts 'reference.txt' + archiveArtifacts 'wer.txt' + archiveArtifacts 'srr.txt' + archiveArtifacts 'wikiniewsResultsWithWer.tsv' } } } diff --git a/script.sh b/script.sh index a2e6bf9..29222dd 100644 --- a/script.sh +++ b/script.sh @@ -6,4 +6,15 @@ 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 | grep 'Scores' > wyniki \ No newline at end of file +sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep 'Scores' > wyniki + +awk 'BEGIN{OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{ print ($2 + $3 + $4)/($2 + $3 + $1) }' > wer.tsv +paste wikiniews_results.tsv wer.tsv > wikiniews_results_with_wer.tsv +tail -n 20 wer.txt >> wer_tmp.txt +rm wer.txt +mv wer_tmp.txt wer.txt +tail -n 20 srr.txt >> srr_tmp.txt +rm srr.txt +mv srr_tmp.txt srr.txt +awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.txt +awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv >> srr.txt \ No newline at end of file