Reputation: 13
when i use datasets from sklearn does colaboraory uses my internet data to download files? like:
from sklearn.datasets import fetch_california_housing
or
from sklearn.datasets import fetch_mldata
mnist = fetch_mldata('MNIST original')
if it does is there a way to change it so google servers download it?
Upvotes: 0
Views: 543
Reputation: 40888
No, it doesn't use your internet to download.
It downloads directly from Google's server. That's why it's very fast.
Upvotes: 1