IUM_07 - fix models/Jenkinsfile

This commit is contained in:
Paweł Łączkowski 2024-04-24 21:40:33 +02:00
parent a001b83905
commit b2c46dcd54
1 changed files with 1 additions and 1 deletions

2
models/Jenkinsfile vendored
View File

@ -50,7 +50,7 @@ pipeline {
steps {
script {
sh "chmod +x ./create_model.py"
sh "python3 ./create_model.py with epochs=${params.epochs} learning_rate=${params.learning_rate} weight_decay=${params.weight_decay}"
sh "python3 ./create_model.py with 'epochs=${params.epochs}' 'learning_rate=${params.learning_rate}' 'weight_decay=${params.weight_decay}'"
def experiment_id = readFile('experiment_id.txt').trim()
archiveArtifacts artifacts: "my_runs/${experiment_id}/*", onlyIfSuccessful: true