This commit is contained in:
s495716 2024-03-29 15:54:51 +01:00
parent 2dda6f35f5
commit 070d4b1fd7
2 changed files with 3 additions and 2 deletions

View File

@ -95,7 +95,7 @@
"outputs": [],
"source": [
"kaggle.api.authenticate()\n",
"kaggle.api.dataset_download_files('iabhishekofficial/mobile-price-classification', path='./', unzip=True)"
"kaggle.api.dataset_download_files('iabhishekofficial/mobile-price-classification', path='.', unzip=True)"
]
},
{

3
Jenkinsfile vendored
View File

@ -26,7 +26,8 @@ pipeline {
steps {
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
"KAGGLE_KEY=${KAGGLE_KEY}" ]) {
sh 'jupyter execute Data_download.ipynb'
sh 'jupyter nbconvert --to python Data_download.ipynb'
sh 'python3 Data_download.py'
archiveArtifacts artifacts: 'test.csv,train.csv', followSymlinks: false
}
}