This commit is contained in:
AWieczarek 2024-04-16 19:05:15 +02:00
parent e067972a05
commit 9edbc9bb20
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
}
steps {
sh "chmod +x ./IUM_05-split.py"
sh "python ./IUM_05-split.py"
sh "python3 ./IUM_05-split.py"
archiveArtifacts artifacts: 'beer_reviews.csv,beer_reviews_train.csv,beer_reviews_test.csv', onlyIfSuccessful: true
}
}
@ -43,8 +43,8 @@ pipeline {
steps {
sh "chmod +x ./IUM_05-model.py"
sh "chmod +x ./IUM_05-predict.py"
sh "python ./IUM_05-model.py"
sh "python ./IUM_05-predict.py"
sh "python3 ./IUM_05-model.py"
sh "python3 ./IUM_05-predict.py"
archiveArtifacts artifacts: 'beer_review_sentiment_model.h5,beer_review_sentiment_predictions.csv', onlyIfSuccessful: true
}
}