s434766
6ff6d7996a
Some checks failed
s434766-training/pipeline/head There was a failure building this commit
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
pipeline {
|
|
agent {
|
|
dockerfile true
|
|
}
|
|
parameters{
|
|
string(
|
|
defaultValue: '16',
|
|
description: 'batch size',
|
|
name: 'BATCH_SIZE'
|
|
)
|
|
string(
|
|
defaultValue: '15',
|
|
description: 'epochs',
|
|
name: 'EPOCHS'
|
|
)
|
|
stages {
|
|
stage('checkout') {
|
|
steps {
|
|
copyArtifacts fingerprintArtifacts: true, projectName: 's434766-create-dataset'
|
|
}
|
|
}
|
|
stage('Docker'){
|
|
steps{
|
|
sh 'python3 "./stroke-pytorch.py" ${BATCH_SIZE} ${EPOCHS} > pred.txt'
|
|
}
|
|
}
|
|
stage('archiveArtifacts') {
|
|
steps {
|
|
archiveArtifacts 'pred.txt'
|
|
archiveArtifacts 'stroke.pkl'
|
|
}
|
|
post {
|
|
success {
|
|
emailext body: 'Training of stroke predictions is finished',
|
|
subject: 's434766 training finished',
|
|
to: '26ab8f35.uam.onmicrosoft.com@emea.teams.ms'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |