diff --git a/lab7/Jenkinsfile_train b/lab7/Jenkinsfile_train index 173ed90..9384d4e 100644 --- a/lab7/Jenkinsfile_train +++ b/lab7/Jenkinsfile_train @@ -14,13 +14,13 @@ pipeline { stages { stage('Stage 1') { steps { - sh 'chmod u+x ./simple_regression.py' + sh 'chmod u+x ./simple_regression_lab7.py' sh 'cat simple_regression.py' echo 'Copying datasets from create-dataset...' copyArtifacts filter: '*', projectName: 's449288-create-dataset' echo 'Datasets copied' echo 'Conducting simple regression model test' - sh 'python3 simple_regression.py $EPOCHS_NUM' + sh 'python3 simple_regression_lab7.py $EPOCHS_NUM' echo 'Model and predictions saved' sh 'ls -lh' sh 'head lego_reg_results.csv'