Datasets:
Tasks:
Token Classification
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
1K<n<10K
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.
Thanks for reporting @taruneapen . We are investigating this.
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?
- https://raw.githubusercontent.com/leondz/emerging_entities_17/master/wnut17train.conll
- https://raw.githubusercontent.com/leondz/emerging_entities_17/master/emerging.dev.conll
- https://raw.githubusercontent.com/leondz/emerging_entities_17/master/emerging.test.annotated
Another possibility could be that you are using an old version of the datasets
library. Please update it:
pip install -U datasets