Dataset 'imdb' doesn't exist on the Hub or cannot be accessed at revision 'tmp-fix-imdb'

Im trying to load imdb dataset using the following but encountered some errors.

from datasets import load_dataset

dataset = load_dataset("imdb", split="test", revision="tmp-fix-imdb")

Error: Dataset ‘imdb’ doesn’t exist on the Hub or cannot be accessed at revision ‘tmp-fix-imdb’
(Reference: imdb source error · Issue #4550 · huggingface/datasets)

from datasets import load_dataset

dataset = load_dataset("imdb", split="test")

Error: KeyError: ‘tags’

Any ideas on how to resolve this?

1 Like

Perhaps this?

Hi! the dataset lives here now: stanfordnlp/imdb · Datasets at Hugging Face

you can load it with

dataset = load_dataset("stanfordnlp/imdb")
1 Like