Collecting the datasets with the statements:
from datasets import list_datasets
all_datasets = list_datasets()
from the notebook fails to find an emotion dataset.
Running the statement:
[item for item in all_datasets if 'emotion' in item][:5]
here are the first items of the list I obtain:
['dair-ai/emotion', 'go_emotions', 'Mansooreh/sharif-emotional-speech-dataset', 'Pyjay/emotion_nl', 'SetFit/emotion']
but no emotion.
As a consequence, the subsequent statements:
from datasets import load_dataset
emotions = load_dataset("emotion")
simply crash.
Information
The problem arises in chapter:
Describe the bug
Collecting the datasets with the statements: from datasets import list_datasets all_datasets = list_datasets() from the notebook fails to find an emotion dataset.
Running the statement: [item for item in all_datasets if 'emotion' in item][:5] here are the first items of the list I obtain: ['dair-ai/emotion', 'go_emotions', 'Mansooreh/sharif-emotional-speech-dataset', 'Pyjay/emotion_nl', 'SetFit/emotion'] but no emotion.
As a consequence, the subsequent statements: from datasets import load_dataset emotions = load_dataset("emotion") simply crash.