cutoff change

This commit is contained in:
Alicja Szulecka 2024-03-26 19:49:26 +01:00
parent c096796a9a
commit c8725cd7c7
7 changed files with 45721 additions and 9 deletions

9
Jenkinsfile vendored
View File

@ -11,18 +11,13 @@ pipeline {
checkout scm checkout scm
} }
} }
stage('Cleanup') {
steps {
sh 'rm -rf artifacts'
}
}
stage('Build') { stage('Build') {
steps { steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) { "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'bash ./get_dataset.sh ${params.CUTOFF}' sh 'bash ./get_dataset.sh 100'
archiveArtifacts artifacts: 'artifacts/*', onlyIfSuccessful: true
} }
} }
} }

File diff suppressed because it is too large Load Diff

View File

View File

View File

View File

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
pip install kaggle --upgrade #pip install kaggle --upgrade
kaggle datasets download -d nasa/meteorite-landings #kaggle datasets download -d nasa/meteorite-landings
unzip -o meteorite-landings.zip unzip -o meteorite-landings.zip