Load fetch_lfw_people using Proxy
0
I want to use this toy dataset for education. But when I try to load it using builtin sklearn loader I got the error. from sklearn import datasets lfw_people = datasets.fetch_lfw_people(min_faces_per_person=50, resize=0.4, data_home='.', ) Error: urlopen error [WinError 10061] I know it is about the proxy - usually to install new packages I use --proxy option. But how to do it now? There is no such option in datasets.fetch_lfw_people I thought about manual downloading it from the official website: http://vis-www.cs.umass.edu/lfw/#download But I don't know which one to choose and how to open after that in python.
python-3.x proxy scikit-learn dataset jupyter-notebook
...