2022-05-08 23:38:31 +02:00
|
|
|
pipeline {
|
|
|
|
agent {
|
2022-05-16 02:27:09 +02:00
|
|
|
docker {
|
|
|
|
image 'docker_image'
|
|
|
|
args '-v /mlruns:/mlruns'
|
|
|
|
}
|
2022-05-16 01:58:32 +02:00
|
|
|
}
|
2022-05-08 23:38:31 +02:00
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
defaultValue: '1000',
|
|
|
|
description: 'Number of epochs',
|
|
|
|
name: 'EPOCHS',
|
|
|
|
trim: false
|
|
|
|
)
|
2022-05-08 23:50:50 +02:00
|
|
|
}
|
2022-05-08 23:38:31 +02:00
|
|
|
stages {
|
2022-05-11 23:51:16 +02:00
|
|
|
stage('Copy artifacts'){
|
|
|
|
steps {
|
|
|
|
copyArtifacts filter: '*', projectName: 's444018-create-dataset'
|
|
|
|
}
|
2022-05-08 23:38:31 +02:00
|
|
|
}
|
2022-05-11 23:51:16 +02:00
|
|
|
stage('Train model with sacred') {
|
|
|
|
steps {
|
2022-05-16 02:40:30 +02:00
|
|
|
sh 'python3 ./biblioteka_DL/dllib.py "epochs=$EPOCHS"'
|
|
|
|
archiveArtifacts artifacts: 'model.pkl, result.csv', followSymlinks: false
|
2022-05-16 01:58:32 +02:00
|
|
|
archiveArtifacts artifacts: 'mlruns/**'
|
|
|
|
archiveArtifacts artifacts: 'my_model/**'
|
|
|
|
build job: 's444018-evaluation/master/'
|
2022-05-11 23:51:16 +02:00
|
|
|
}
|
|
|
|
}
|
2022-05-08 23:43:00 +02:00
|
|
|
}
|
2022-05-08 23:38:31 +02:00
|
|
|
post {
|
|
|
|
success {
|
|
|
|
emailext body: 'SUCCESS', subject: 's444018-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
failure {
|
|
|
|
emailext body: 'FAILURE', subject: 's444018-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
unstable {
|
|
|
|
emailext body: 'UNSTABLE', subject: 's444018-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
changed {
|
|
|
|
emailext body: 'CHANGED', subject: 's444018-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|