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.