diff --git a/Jenkinsfile b/Jenkinsfile index 2355678..9a3623c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,8 +9,8 @@ pipeline { stage('copyArtifacts') { steps { copyArtifacts filter: 'wikiniews_results.tsv', fingerprintArtifacts: true, projectName: 'ASR-eval', selector: lastSuccessful(), target: './' - // copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful() - // copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful() + copyArtifacts filter: 'wer.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful() + copyArtifacts filter: 'srr.txt', fingerprintArtifacts: true, projectName: 's426086-metrics', selector: lastSuccessful() } } stage('countLines') { diff --git a/countlines-metrics.sh b/countlines-metrics.sh index a069c4a..a08f785 100644 --- a/countlines-metrics.sh +++ b/countlines-metrics.sh @@ -18,8 +18,8 @@ awk 'BEGIN{OFS="\t"}{print $6, $7, $8, $9}' < results | awk '{ print ($2 + $3 + paste wikiniews_results.tsv wer.tsv > wikiniews_results.tsv -# tail -n 50 wer.txt > wer.txt -# tail -n 50 srr.txt > srr.txt +tail -n 50 wer.txt > wer.txt +tail -n 50 srr.txt > srr.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 \ No newline at end of file