This commit is contained in:
Alicja Szulecka 2024-03-26 20:17:34 +01:00
parent a52a754d7c
commit ca7e5f6411
2 changed files with 4 additions and 2 deletions

2
stats/Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
}
stage('Build') {
steps {
sh "bash ./stats_dataset.sh"
sh "bash ./stats/stats_dataset.sh"
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
}
}

View File

@ -5,3 +5,5 @@ wc -l artifacts/meteorite_train.csv > stats_train.txt
wc -l artifacts/meteorite_test.csv > stats_test.txt
wc -l artifacts/meteorite_validation.csv > stats_validation.txt
mv stats_train.txt stats_test.txt meteorite_test.csv stats_validation.txt artifacts/