How to Use this Dataset

#2
by OptimusLiam - opened

I'm fresh to hugging face Dataset and trying to use this dataset following the guide.
I login hugging face and load dataset from package "datasets" like "ds = load_dataset("testdummyvt/hagRIDv2_512px")". And I get an error
while I try to login my accont.
Here is the error log:
"requests.exceptions.ConnectionError: (MaxRetryError("HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /api/whoami-v2 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x73ee1052f0b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))"), '(Request ID: 102df2b9-38c5-4090-a597-16b03a03f81a)')
"
What can I do to solve this problem

"requests.exceptions.ConnectionError: (MaxRetryError("HTTPSConnectionPool(host='huggingface.co', port=443): Max retries exceeded with url: /api/whoami-v2 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x73ee1052f0b0>: Failed to establish a new connection: [Errno 101] Network is unreachable'))"), '(Request ID: 102df2b9-38c5-4090-a597-16b03a03f81a)')
"

This error looks like a network connection issue; I do not think it is an issue with the dataset. Try to download the partial dataset I created:

from datasets import load_dataset
dataset = load_dataset("testdummyvt/hagRIDv2_512px_10GB", split = "train", revision="classification")

testdummyvt/hagRIDv2_512px_10GB is a subset of the larger testdummyvt/hagRIDv2_512px dataset.

Sign up or log in to comment