metryki
This commit is contained in:
parent
309385b49e
commit
ba721b4736
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -14,7 +14,7 @@ pipeline {
|
|||||||
archiveArtifacts 'wer.txt'
|
archiveArtifacts 'wer.txt'
|
||||||
archiveArtifacts 'srr.txt'
|
archiveArtifacts 'srr.txt'
|
||||||
archiveArtifacts 'wer.tsv'
|
archiveArtifacts 'wer.tsv'
|
||||||
archiveArtifacts 'wikiniews_results.tsv'
|
archiveArtifacts 'wikiniews_results.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
4
lines.sh
4
lines.sh
@ -10,7 +10,9 @@ 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
|
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
|
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 | column -s $'\t' -t
|
wikiniews_results.tsv > wikiniews_results.txt
|
||||||
|
wer.tsv > wer2.txt
|
||||||
|
paste wikiniews_results.txt wer2.txt
|
||||||
|
|
||||||
awk 'BEGIN{FS=OFS="\t"}{ bad = bad + $1; all++ }END{ print bad/all }' < wer.tsv >> wer.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
|
awk 'BEGIN{FS=OFS="\t"}{ if ( $1 == 0 ) good++; all++ }END{ print good/all }' < wer.tsv >> srr.txt
|
Loading…
Reference in New Issue
Block a user