Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
crowdsourced
Source Datasets:
original
Tags:
License:

Unable to access data

#2
by taruneapen - opened

Hi,
I have been trying to load the dataset but I think a link somewhere is broken because my load dataset is not fetching data as expected. If I could be directed towards another location that has the .csv file that would also help.

Datasets Maintainers org

Thanks for reporting @taruneapen . We are investigating this.

Datasets Maintainers org

We are sorry, but we cannot reproduce your issue. The dataset loads normally:

In [5]: ds = load_dataset("wnut_17")

In [6]: ds
Out[6]: 
DatasetDict({
    train: Dataset({
        features: ['id', 'tokens', 'ner_tags'],
        num_rows: 3394
    })
    validation: Dataset({
        features: ['id', 'tokens', 'ner_tags'],
        num_rows: 1009
    })
    test: Dataset({
        features: ['id', 'tokens', 'ner_tags'],
        num_rows: 1287
    })
})

Could you please to try if you can access the source data files?

Another possibility could be that you are using an old version of the datasets library. Please update it:

pip install -U datasets

Sign up or log in to comment