This commit is contained in:
Jakub Zaręba 2023-05-10 16:30:13 +02:00
parent b3a603e56d
commit 598c084c0c

View File

@ -12,14 +12,15 @@ pipeline {
stage('Pobierz dane') {
steps {
script {
copyArtifacts(projectName: 's487187-create-dataset', filter: '*.csv', target: 'Athletes_winter_games.csv', fingerprintArtifacts: true)
copyArtifacts(projectName: 's487187-create-dataset', filter: '*.csv', target: 'data.csv', fingerprintArtifacts: true)
}
}
}
stage('Trenuj model') {
steps {
script {
sh 'python3 train.py ${params.EPOCHS}'
// sh 'python3 train.py ${params.EPOCHS}'
sh 'python3 train.py'
}
}
}