Dockerfile

This commit is contained in:
Mateusz 2024-04-01 14:30:18 +02:00
parent 6592cd02ac
commit f615296216
2 changed files with 5 additions and 5 deletions

3
Jenkinsfile vendored
View File

@ -22,7 +22,8 @@ pipeline {
steps {
script {
withEnv (["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
sh 'python3 create-dataset.py'
sh 'chmod +x create-dataset.py'
sh 'python3 ./create-dataset.py'
}
}
}

View File

@ -1,5 +1,4 @@
import os
from kaggle.api.kaggle_api_extended import KaggleApi
import pandas as pd
import numpy as np
@ -9,9 +8,9 @@ from sklearn.model_selection import train_test_split
def download_kaggle_dataset():
kaggle = KaggleApi()
kaggle.authenticate()
kaggle.dataset_download_files("mlg-ulb/creditcardfraud", path="./", unzip=True)
os.system("kaggle datasets download -d mlg-ulb/creditcardfraud")
os.system("unzip creditcardfraud.zip")
os.system("rm creditcardfraud.zip")
def load_data(name):