ium_444507/Jenkinsfile_training

28 lines
897 B
Plaintext
Raw Normal View History

2022-05-01 18:34:51 +02:00
pipeline {
agent {
docker { image 's444507_create_dataset_image:latest' }
}
2022-05-01 20:55:08 +02:00
parameters {
string(name: 'epoch', defaultValue: '1000', description: 'Number of epochs to train model.')
}
2022-05-01 18:34:51 +02:00
stages {
stage('Get arifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 's444507-create-dataset', selector: lastSuccessful()
}
}
stage('Show stats') {
steps {
2022-05-01 20:55:08 +02:00
sh "python3 ./lab05_deepLearning.py $epoch"
2022-05-01 18:34:51 +02:00
}
}
}
post {
success {
archiveArtifacts artifacts: 'prediction_results.csv, CarPrices_pytorch_model.pkl', followSymlinks: false
}
always {
emailext body: "${currentBuild.currentResult}", subject: 's444507-training', to: 'e19191c5.uam.onmicrosoft.com@emea.teams.ms'
}
}
}