fix
All checks were successful
s444452-training/pipeline/head This commit looks good
s444452-evaluation/pipeline/head This commit looks good

This commit is contained in:
AdamOsiowy123 2022-05-04 22:50:53 +02:00
parent 3e7986c73a
commit ff2213ebe2
2 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,6 @@ node {
stage('Run script') {
withEnv(["TEST_PARAMS=${params.TEST_PARAMS}", "BUILD_NR=${params.BUILD_NR}"]) {
sh "rm neural_network_evaluation.csv"
sh "rm model/neural_net"
sh "python3 Scripts/evaluate_neural_network.py $BUILD_NR $TEST_PARAMS"
}
}

View File

@ -20,6 +20,7 @@ node {
}
stage('Run script') {
withEnv(["TRAIN_PARAMS=${params.TRAIN_PARAMS}"]) {
sh "rm model/neural_net"
sh "python3 Scripts/train_neural_network.py $TRAIN_PARAMS"
}
}