diff --git a/evaluation/Jenkinsfile b/evaluation/Jenkinsfile index 261b630..84e584f 100644 --- a/evaluation/Jenkinsfile +++ b/evaluation/Jenkinsfile @@ -11,7 +11,7 @@ pipeline { ) buildSelector( defaultSelector: lastSuccessful(), - description: 'Build to extract artifacts from', + description: 'Build to extract model artifact from', name: 'BUILD_SELECTOR' ) } diff --git a/models/Jenkinsfile b/models/Jenkinsfile index 254b316..67aca6d 100644 --- a/models/Jenkinsfile +++ b/models/Jenkinsfile @@ -49,7 +49,7 @@ pipeline { steps { sh "chmod +x ./create_model.py" - sh "python3 ./create_model.py" + sh "python3 ./create_model.py ${params.epochs} ${params.learning_rate} ${params.weight_decay}" archiveArtifacts artifacts: 'models/model.pth', onlyIfSuccessful: true build job: 's464863-evaluation/main', wait: false }