Not able to load dataset

#1
by kulla - opened

Whenever I try do download this dataset I get the error 'ValueError: This is a local dataset. Please pass the data_dir kwarg to load_dataset'

To reproduce:

from datasets import load_dataset
dataset = load_dataset("bigbio/bronco")

BigScience Biomedical Datasets org

In the bigbio corpus, "local" refers to datasets that you have to already have on disk. In this case, our loading script expects a path to the dataset to be passed in. This is typically done for datasets that are access controlled or that we could not host for some other reason.

Sign up or log in to comment