This commit is contained in:
Mateusz 2024-05-04 11:26:17 +02:00
parent 91508718a0
commit 795b91c695

6
Jenkinsfile vendored
View File

@ -2,6 +2,10 @@ pipeline {
agent { agent {
dockerfile true dockerfile true
} }
pipelineTriggers {
upstream(upstreamProjects: 'z-s464913-create-dataset', threshold: hudson.model.Result.SUCCESS)
}
parameters { parameters {
buildSelector( buildSelector(
@ -9,6 +13,8 @@ pipeline {
description: 'Which build to use for copying artifacts', description: 'Which build to use for copying artifacts',
name: 'BUILD_SELECTOR' name: 'BUILD_SELECTOR'
) )
string(name: 'learning_rate', defaultValue: '0.001', description: 'Learning rate')
string(name: 'epochs', defaultValue: '5', description: 'Number of epochs')
} }
stages { stages {