This commit is contained in:
Kamil Paprota 2020-04-03 15:18:31 +02:00
parent 965bfc1aae
commit 99e9238eb8
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -13,7 +13,7 @@ pipeline {
archiveArtifacts 'lines_number.txt'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wikiniews_results_wer.tsv'
archiveArtifacts 'wikiniews_results.tsv'
}
}
}

View File

@ -10,7 +10,7 @@ awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.tr
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
paste $5 wer.tsv > wikiniews_results.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