This commit is contained in:
Diana-Krol 2020-04-03 17:08:16 +02:00
parent 8810ab9065
commit f9b8bb7352
4 changed files with 57 additions and 1 deletions

20
JenkinsfilePlots Normal file
View File

@ -0,0 +1,20 @@
pipeline {
agent { dockerfile true }
stages {
stage('Hello') {
steps {
git 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git'
copyArtifacts filter: 'srr.txt, wer.txt', fingerprintArtifacts: true, optional: true, projectName: 's416267-metrics', target: './'
}
}
stage('Wykresy') {
steps{
sh('chmod +x ./plots.sh')
sh('./plots.sh wer srr')
archiveArtifacts 'wer.png'
archiveArtifacts 'srr.png'
}
}
}
}

View File

@ -4,14 +4,20 @@ pipeline {
stage('Stage 1') {
steps {
echo 'Hello World'
echo 'Trigger Check'
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], gitTool: 'Default', submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s416251/s416251-mlworkshops.git']]])
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
sh('chmod +x ./lines.sh')
sh(' ./lines.sh')
archiveArtifacts 'lines_number.txt'
archiveArtifacts 'wer.txt'
archiveArtifacts 'srr.txt'
archiveArtifacts 'wer.tsv'
archiveArtifacts 'wikiniews_results_with_wer.tsv'
}
}
stage('Stage 2'){
steps{
build 's416251-plots'
}
}

View File

@ -1,2 +1,23 @@
wc -l wikiniews_results.tsv > lines_number.txt
wc -l wikiniews_results.tsv > lines_number.txt
cut -f2 wikiniews_results.tsv > hypothesis.txt
cut -f3 wikiniews_results.tsv > reference.txt
mv wer.txt wer1.txt
mv srr.txt srr1.txt
cat wer1.txt | tail -n 99 > wer.txt
cat srr1.txt | tail -n 99 > srr.txt
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < reference.txt > reference.trn
awk 'BEGIN{FS=OFS="\t"}{print $0,"(sp1_"NR")"}' < hypothesis.txt > hypothesis.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 wikiniews_results.tsv wer.tsv > wikiniews_results_with_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

9
plots.sh Normal file
View File

@ -0,0 +1,9 @@
for FILE in "$@"
do
gnuplot <<- EOF
set term png
set title "Graph - ${FILE}"
set output "${FILE}.png"
plot "${FILE}.txt" with points pointtype 5 notitle
EOF
done