Datasets:
Tasks:
Token Classification
Modalities:
Text
Sub-tasks:
named-entity-recognition
Languages:
English
Size:
1K - 10K
License:
""" NER dataset compiled by T-NER library https://github.com/asahi417/tner/tree/master/tner """ | |
import json | |
from itertools import chain | |
import datasets | |
logger = datasets.logging.get_logger(__name__) | |
_DESCRIPTION = """[BTC](https://aclanthology.org/C16-1111/)""" | |
_NAME = "btc" | |
_VERSION = "1.0.1" | |
_CITATION = """ | |
@inproceedings{derczynski-etal-2016-broad, | |
title = "Broad {T}witter Corpus: A Diverse Named Entity Recognition Resource", | |
author = "Derczynski, Leon and | |
Bontcheva, Kalina and | |
Roberts, Ian", | |
booktitle = "Proceedings of {COLING} 2016, the 26th International Conference on Computational Linguistics: Technical Papers", | |
month = dec, | |
year = "2016", | |
address = "Osaka, Japan", | |
publisher = "The COLING 2016 Organizing Committee", | |
url = "https://aclanthology.org/C16-1111", | |
pages = "1169--1179", | |
abstract = "One of the main obstacles, hampering method development and comparative evaluation of named entity recognition in social media, is the lack of a sizeable, diverse, high quality annotated corpus, analogous to the CoNLL{'}2003 news dataset. For instance, the biggest Ritter tweet corpus is only 45,000 tokens {--} a mere 15{\%} the size of CoNLL{'}2003. Another major shortcoming is the lack of temporal, geographic, and author diversity. This paper introduces the Broad Twitter Corpus (BTC), which is not only significantly bigger, but sampled across different regions, temporal periods, and types of Twitter users. The gold-standard named entity annotations are made by a combination of NLP experts and crowd workers, which enables us to harness crowd recall while maintaining high quality. We also measure the entity drift observed in our dataset (i.e. how entity representation varies over time), and compare to newswire. The corpus is released openly, including source text and intermediate annotations.", | |
} | |
""" | |
_HOME_PAGE = "https://github.com/asahi417/tner" | |
_URL = f'https://huggingface.co/datasets/tner/{_NAME}/raw/main/dataset' | |
_URLS = { | |
str(datasets.Split.TEST): [f'{_URL}/test.json'], | |
str(datasets.Split.TRAIN): [f'{_URL}/train.json'], | |
str(datasets.Split.VALIDATION): [f'{_URL}/valid.json'], | |
} | |
class BTCConfig(datasets.BuilderConfig): | |
"""BuilderConfig""" | |
def __init__(self, **kwargs): | |
"""BuilderConfig. | |
Args: | |
**kwargs: keyword arguments forwarded to super. | |
""" | |
super(BTCConfig, self).__init__(**kwargs) | |
class BTC(datasets.GeneratorBasedBuilder): | |
"""Dataset.""" | |
BUILDER_CONFIGS = [ | |
BTCConfig(name=_NAME, version=datasets.Version(_VERSION), description=_DESCRIPTION), | |
] | |
def _split_generators(self, dl_manager): | |
downloaded_file = dl_manager.download_and_extract(_URLS) | |
return [datasets.SplitGenerator(name=i, gen_kwargs={"filepaths": downloaded_file[str(i)]}) | |
for i in [datasets.Split.TRAIN, datasets.Split.VALIDATION, datasets.Split.TEST]] | |
def _generate_examples(self, filepaths): | |
_key = 0 | |
for filepath in filepaths: | |
logger.info(f"generating examples from = {filepath}") | |
with open(filepath, encoding="utf-8") as f: | |
_list = [i for i in f.read().split('\n') if len(i) > 0] | |
for i in _list: | |
data = json.loads(i) | |
yield _key, data | |
_key += 1 | |
def _info(self): | |
names = ["B-LOC", "B-ORG", "B-PER", "I-LOC", "I-ORG", "I-PER", "O"] | |
return datasets.DatasetInfo( | |
description=_DESCRIPTION, | |
features=datasets.Features( | |
{ | |
"tokens": datasets.Sequence(datasets.Value("string")), | |
"tags": datasets.Sequence(datasets.features.ClassLabel(names=names)) | |
} | |
), | |
supervised_keys=None, | |
homepage=_HOME_PAGE, | |
citation=_CITATION, | |
) | |