2022-05-08 19:36:46 +02:00
|
|
|
pipeline {
|
|
|
|
agent {
|
|
|
|
dockerfile {
|
|
|
|
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t sebastianwalesa"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
defaultValue: '1000',
|
|
|
|
description: 'Number of epochs',
|
|
|
|
name: 'EPOCHS',
|
|
|
|
trim: false
|
|
|
|
)
|
|
|
|
}
|
|
|
|
stages {
|
|
|
|
stage('Sacred-stage'){
|
|
|
|
steps {
|
|
|
|
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
|
2022-05-08 19:42:55 +02:00
|
|
|
sh 'python3 ml_pytroch_sacred.py with "epochs=$EPOCHS"'
|
2022-05-08 19:36:46 +02:00
|
|
|
sh 'cp IUM_478839/1/config.json configuration.json'
|
|
|
|
sh 'cp IUM_478839/1/info.json param.json'
|
|
|
|
sh 'cp IUM_478839/1/Model_xPosition.pkl model.pkl'
|
2022-05-08 19:59:55 +02:00
|
|
|
archiveArtifacts artifacts: 'configuration.json, param.json, model.pkl'
|
2022-05-08 19:36:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Evaluation-job'){
|
|
|
|
steps {
|
|
|
|
build job: 's478839-evaluation/feature/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|