k4droid3
k4droid3

Reputation: 13

does downloading datasets on google colaboratory use my internet data?

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')

MNIST Dataset

if it does is there a way to change it so google servers download it?

Upvotes: 0

Views: 543

Answers (1)

korakot
korakot

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

Related Questions