SelfExplainML / PiML-Toolbox

PiML (Python Interpretable Machine Learning) toolbox for model development & diagnostics
https://selfexplainml.github.io/PiML-Toolbox
Apache License 2.0
912 stars 109 forks source link

Uploading a large dataset? #12

Closed xloffree closed 1 year ago

xloffree commented 1 year ago

Is there any way to upload a dataset of size greater than 10mb?

Thanks

ZebinYang commented 1 year ago

Hi @xloffree. Sure, you can upload a data larger than 10mb. This restriction is due to ipywidgets, and you may skip it by using the high code mode. For example,

import pandas as pd
data = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/00265/CASP.csv") 
exp.data_loader(data=data)

Also see the full example https://colab.research.google.com/github/SelfExplainML/PiML-Toolbox/blob/main/examples/Example_CustomDataLoad_Two_Ways.ipynb