This repository describes the Twitter dataset for Named Entity Recognition in Turkish. The dataset consists of 5,000 randomly selected tweets published between June 2020 and June 2021.
BERTurk and loodos's BERT model trained on our training set can be found in HuggingFace as busecarik/berturk-sunlp-ner-turkish and busecarik/bert-loodos-sunlp-ner-turkish.
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("busecarik/berturk-sunlp-ner-turkish")
model = AutoModelForTokenClassification.from_pretrained("busecarik/berturk-sunlp-ner-turkish")
and
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("busecarik/bert-loodos-sunlp-ner-turkish")
model = AutoModelForTokenClassification.from_pretrained("busecarik/bert-loodos-sunlp-ner-turkish")
Dataset is split into train/val/test sets with ratios of 70/15/15. Each line is separated with a tab character. The description of columns in each line is as follows:
Column Name | Description |
---|---|
tweet_id | Twitter ID of the tweet |
start_pos | Position of starting character of an entity |
end_pos | Position of last character of an entity |
named_entity_type | Named Entity Type (Person, Location, Organization, Money, Time, Product, TV-Show) |
The baseline results obtained with different models in the validation and test sets are presented as follows:
Model | Validation F1 Score | Test F1 Score |
---|---|---|
BiLSTM-CRF | 70.49 | 69.10 |
BERTurk (cased, 128k) | 85.11 | 82.57 |
BERT_loodos | 84.49 | 84.51 |
ConvBERTurk mC4 (cased) | 83.22 | 82.75 |
You can cite the following paper, if you use this dataset:
@InProceedings{ark-yeniterzi:2022:LREC,
author = {\c{C}ar\i k, Buse and Yeniterzi, Reyyan},
title = {A Twitter Corpus for Named Entity Recognition in Turkish},
booktitle = {Proceedings of the Language Resources and Evaluation Conference},
month = {June},
year = {2022},
address = {Marseille, France},
publisher = {European Language Resources Association},
pages = {4546--4551},
url = {https://aclanthology.org/2022.lrec-1.484}
}
For questions or comments regarding the data set, you can contact the author by e-mail:
Buse Çarık