This commit is contained in:
s416178 2020-04-03 14:06:51 +02:00
parent b7fae1381d
commit bb2a2b6f39
2 changed files with 3 additions and 0 deletions

1
Jenkinsfile vendored
View File

@ -16,6 +16,7 @@ pipeline {
archiveArtifacts 'result.log'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wikiniews_results_wer.tsv'
}
}
}

View File

@ -17,5 +17,7 @@ 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 > scores
awk 'BEGIN{OFS="\t"}{print $6, $7, $8, $9}' < scores | awk '{ print ($2 + $3 + $4)/($2 + $3 + $1) }' > wer.tsv
paste $1 wer.tsv > wikiniews_results_wer.tsv
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