customer_churn / customer_churn_data.py
louiecerv's picture
sync with remote
0ff5cdf
raw
history blame
190 Bytes
from datasets import load_dataset
def load_data():
data_files = {'train': 'customer_churn_data.csv'}
dataset = load_dataset('csv', data_files=data_files)
return dataset["train"]