You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In LLM 04 demo, we call imdb_ds = load_dataset("imdb") as our fine-tuning dataset.
It looks like there was an update to this dataset, and this line will throw an error ExpectedMoreSplits: {'unsupervised'}.
This can be fixed by forcing a re-install of the latest version of Hugging Face's datasets library. However doing so breaks the code further down where it can't find the train and validation splits in the dataset object.
The text was updated successfully, but these errors were encountered:
In LLM 04 demo, we call
imdb_ds = load_dataset("imdb")
as our fine-tuning dataset.It looks like there was an update to this dataset, and this line will throw an error
ExpectedMoreSplits: {'unsupervised'}
.This can be fixed by forcing a re-install of the latest version of Hugging Face's
datasets
library. However doing so breaks the code further down where it can't find thetrain
andvalidation
splits in the dataset object.The text was updated successfully, but these errors were encountered: