IUM_s464980/training/Jenkinsfile
Sheaza 34ff694fcd
Some checks failed
s464980-training/pipeline/head There was a failure building this commit
add training param
2024-05-14 21:43:04 +02:00

42 lines
1.1 KiB
Groovy

pipeline {
agent any
parameters {
buildSelector (
defaultSelector: lastSuccessful(),
description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR'
)
string (
name: 'EPOCHS',
defaultValue: '35',
description: 'Epochs to train'
)
}
stages {
stage('Checkout repository') {
steps {
checkout scm
}
}
stage('Copy artifacts') {
steps {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s464980-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
stage("Training") {
agent {
dockerfile {
filename 'Dockerfile'
reuseNode true
}
}
steps {
sh "chmod +x ./train.py"
sh "python ./train.py --epochs ${params.EPOCHS}"
archiveArtifacts artifacts: 'model.keras', onlyIfSuccessful: true
}
}
}
}