Hi,
Iām a new to HuggingFace and Iām working through the LLM course.
From Chapter 3, Iām trying to load datasets in Jupyter Notebook using the following notebook cell:
from datasets import load_dataset
raw_datasets = load_dataset(āglueā, āmrpcā)
It then results in the following error:
OSError: [WinError 433] A device which does not exist was specified: āglue\state.jsonā
I ensured that I was logged into the appropriate token using:
!huggingface-cli whoami
Iāve also updated datasets, transformers etc to the most recent versions and Iām running Python 3.10.9
Has anyone come across this error? Or have any ideas on how to correct it?