From 9edbc9bb20752c6a0b815cf0d22eb55ca3b99cf7 Mon Sep 17 00:00:00 2001 From: AWieczarek Date: Tue, 16 Apr 2024 19:05:15 +0200 Subject: [PATCH] IUM_05 --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e700ed6..c9379ac 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 } }