Dockerfile

This commit is contained in:
Mateusz 2024-04-01 17:17:01 +02:00
parent 32bcaf02f0
commit 78754f7a40
2 changed files with 1 additions and 3 deletions

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
stage('Run create-dataset script') {
steps {
sh 'chmod +x create-dataset.py'
sh 'python3 ./create-dataset.py $KAGGLE_USERNAME $KAGGLE_KEY'
sh 'python3 ./create-dataset.py'
}
}
stage('Archive Artifacts') {

View File

@ -10,8 +10,6 @@ from sklearn.model_selection import train_test_split
def download_kaggle_dataset():
os.environ["KAGGLE_USERNAME"] = sys.argv[1]
os.environ["KAGGLE_KEY"] = sys.argv[2]
kaggle = KaggleApi()
kaggle.authenticate()
kaggle.dataset_download_files("mlg-ulb/creditcardfraud", path="./", unzip=True)