add EPOCHS variable
This commit is contained in:
parent
7dd45b9c75
commit
2ea7562953
@ -4,11 +4,19 @@ pipeline {
|
|||||||
additionalBuildArgs "--build-arg KAGGLE_USERNAME=${params.KAGGLE_USERNAME} --build-arg KAGGLE_KEY=${params.KAGGLE_KEY} --build-arg CUTOFF=${params.CUTOFF} -t sebastianwalesa"
|
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 {
|
stages {
|
||||||
stage('Train-stage'){
|
stage('Train-stage'){
|
||||||
steps {
|
steps {
|
||||||
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
|
copyArtifacts filter: '*', projectName: 's478839-create-dataset'
|
||||||
sh 'python3 ./ml_pytorch.py'
|
sh 'python3 ./ml_pytorch.py $EPOCHS'
|
||||||
archiveArtifacts artifacts: 'Model_xPosition.pkl', followSymlinks: false
|
archiveArtifacts artifacts: 'Model_xPosition.pkl', followSymlinks: false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user