openml / OpenML

Open Machine Learning
https://openml.org
BSD 3-Clause "New" or "Revised" License
669 stars 91 forks source link

fetch_openml with albert dataset fails #1122

Open joaquinvanschoren opened 3 years ago

joaquinvanschoren commented 3 years ago

Description

sklearn's fetch_openml fails with dataset 41147 (albert), returning an internal server error. It is likely related to the large size of the dataset. The get_csv on the website does work as normal, though.

Steps/Code to Reproduce

import sklearn.datasets
X, y = sklearn.datasets.fetch_openml(data_id=41147, return_X_y=True)