This commit is contained in:
s460941 2020-04-23 22:42:49 +02:00
parent fbf7e26aa0
commit 98bd57a62c
2 changed files with 2 additions and 3 deletions

1
Jenkinsfile vendored
View File

@ -14,7 +14,6 @@ pipeline {
steps { steps {
sh('chmod +x ./count.sh') sh('chmod +x ./count.sh')
sh('./count.sh') sh('./count.sh')
archiveArtifacts 'test.txt'
archiveArtifacts 'lines_number.txt' archiveArtifacts 'lines_number.txt'
archiveArtifacts 'wer_results.txt' archiveArtifacts 'wer_results.txt'
archiveArtifacts 'wer.txt' archiveArtifacts 'wer.txt'

View File

@ -16,5 +16,5 @@ 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 | awk -v OFS='\t' '{print $6,$7,$8,$9}' | awk '{print($2+$3+$4)/($1+$2+$3) }' > wer_results.txt sclite -f 0 -r reference.trn trn -h hypothesis.trn trn -e utf-8 -i rm -o all stdout | grep Scores | awk -v OFS='\t' '{print $6,$7,$8,$9}' | awk '{print($2+$3+$4)/($1+$2+$3) }' > wer_results.txt
awk '{ all+=$0;count++ } END { print all/count }' wer_results.txt > wer.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 ' $1==0 {score[0]++} $1!=0 {score[1]++} END { s=score[0]+score[1]; print(score[0]/s)*100}' wer_results.txt >> srr.txt