CI failing because of fetch_openml(name='miceprotein', version=4)
See original GitHub issueThe CI is failing everywhere, because the following is failing everywhere
from sklearn.datasets import fetch_openml
fetch_openml(name='miceprotein', version=4)
even tho the dataset exist: https://www.openml.org/d/40966
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Question about fetch_openml in scikit-Learn - Stack Overflow
0 and Python 3.8. When I run, mice = fetch_openml(name='miceprotein', version=4). I get this error message:
Read more >sklearn.datasets.fetch_openml
If data_id is not given, name (and potential version) are used to obtain a dataset. data_homestr, default=None. Specify another download and cache folder...
Read more >Analysis Report scikit_learn-0.22.2.post1-cp37-cp37m ...
Name : scikit-learn.Version: 0.22.2.post1.Summary: A set of python modules for machine learning and data mining.Home-page: http://scikit-learn.org.
Read more >6. Dataset loading utilities — scikit-learn 0.21.3 documentation
6.2.4. Optical recognition of handwritten digits dataset¶ ... sklearn.datasets import fetch_openml >>> mice = fetch_openml(name='miceprotein', version=4).
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
When I was looking at this, I was able to reproduce the error locally. (I am seeing this again on some PRs)
We normally do not run network test on CI in PRs. Maybe we can skip this by default and only have it run nightly.
+1