29 lines
698 B
Plaintext
29 lines
698 B
Plaintext
|
pipeline {
|
||
|
agent {
|
||
|
docker { image 'sebastianwalesa/ium:1.0' }
|
||
|
}
|
||
|
parameters {
|
||
|
string(
|
||
|
defaultValue: '1000',
|
||
|
description: 'Number of epochs',
|
||
|
name: 'EPOCHS',
|
||
|
trim: false
|
||
|
)
|
||
|
}
|
||
|
stages {
|
||
|
stage('Sacred-stage'){
|
||
|
steps {
|
||
|
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
|
||
|
sh 'python3 ml_pytroch_sacred.py with "epochs=$EPOCHS"'
|
||
|
archiveArtifacts artifacts: 'IUM_478839/**, result.txt, Model_xPosition.pkl'
|
||
|
sh 'rm -r IUM_478839'
|
||
|
}
|
||
|
}
|
||
|
stage('Evaluation-job'){
|
||
|
steps {
|
||
|
build job: 's478839-evaluation/feature/'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|