jenkinsfile for eval fixed
s470618-evaluation/pipeline/head There was a failure building this commit Details

This commit is contained in:
gedin 2023-05-24 16:58:48 +02:00
parent cea42abe41
commit 8555888ad1
1 changed files with 2 additions and 4 deletions

View File

@ -3,18 +3,16 @@ node {
checkout scm
copyArtifacts projectName: 's470618-metrics', filter: 'metrics.txt', fingerprintArtifacts: true, selector: lastSuccessful(), optional: true, target: './train-eval'
copyArtifacts projectName: 's470618-training', filter: '*.pt', fingerprintArtifacts: true, selector: lastSuccessful(), target: '.'
}
stage('Evaluate metrics') {
sh "pip install matplotlib"
sh "cd train-eval && ./eval.py"
sh "./plot_metrics.py"
}
}
stage('artifacts') {
echo 'saving artifacts'
archiveArtifacts 'metrics.txt', 'prediction.tsv', 'metrics.png'
}
}
}