zadanie
This commit is contained in:
parent
fed5071534
commit
5ca20f89a2
@ -4,20 +4,14 @@ pipeline {
|
|||||||
stage('Stage 1') {
|
stage('Stage 1') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Hello World'
|
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']]])
|
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()
|
copyArtifacts fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful()
|
||||||
sh('chmod +x ./lines.sh')
|
sh('chmod +x ./lines.sh')
|
||||||
sh(' ./lines.sh')
|
sh(' ./lines.sh')
|
||||||
archiveArtifacts 'lines_number.txt'
|
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'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
22
lines.sh
22
lines.sh
@ -1,23 +1 @@
|
|||||||
wc -l wikiniews_results.tsv > lines_number.txt
|
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
|
|
||||||
|
Loading…
Reference in New Issue
Block a user