:(
Some checks failed
s434695-training/pipeline/head There was a failure building this commit

This commit is contained in:
s434695 2021-05-15 19:19:56 +02:00
parent 18172eadf9
commit 9a0711c0d3

9
Jenkinsfile vendored
View File

@ -27,6 +27,15 @@ pipeline {
copyArtifacts fingerprintArtifacts: true, projectName: 's434695-create-dataset', selector: buildParameter('WHICH_BUILD')
}
}
stage('train')
{
steps
{
catchError {
sh 'python3 train.py ${BATCH_SIZE} ${EPOCHS}'
}
}
}
stage('archiveArtifacts') {
steps{
archiveArtifacts 'vgsales_model.h5'