Dataset loading is not working

Greeting,

Iā€™m currently going through Chapter 3 of the Hugging Face Transformer course.
There is a code at the beginning:

from datasets import load_dataset

raw_datasets = load_dataset("glue", "mrpc")
raw_datasets

When I run it, I get the following error:

FileNotFoundError: Couldn't find a dataset script at .../glus/glus.py or any data file in the same directory. Couldn't find 'glus' on the Hugging Face Hub either: FileNotFoundError: Couldn't find file at https://raw.githubusercontent.com/huggingface/datasets/main/datasets/glus/glus.py

Is there any way to solve this problem? Thank you.

Hi! It seems you have a typo in the load_dataset call - the dataset name should be ā€œglueā€ and not ā€œglusā€.

1 Like

Thank you! It was a really silly mistake on my partšŸ˜… Iā€™m glad you helped me solve it.