diff --git a/Jenkinsfile_DL b/Jenkinsfile_DL index 330725d..6d057c1 100644 --- a/Jenkinsfile_DL +++ b/Jenkinsfile_DL @@ -6,7 +6,7 @@ pipeline { } } parameters { - string(name: 'TRAIN_PARAMS', defaultValue: '', description: 'Parametry dla skryptu trenujÄ…cego') + string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok') } stages { stage('Pobierz dane') { @@ -19,7 +19,7 @@ pipeline { stage('Trenuj model') { steps { script { - sh 'python3 train.py ${params.TRAIN_PARAMS}' + sh 'python3 train.py ${params.EPOCHS}' } } }