This is the implementation of Named Entity Recognition for Social Media Texts with Semantic Augmentation at EMNLP-2020.
Visit our homepage to find more our recent research and softwares for NLP (e.g., pre-trained LM, POS tagging, NER, sentiment analysis, relation extraction, datasets, etc.).
We are improving SANER. For updates, please visit HERE.
If you use or extend our work, please cite our paper at EMNLP-2020.
@inproceedings{nie-emnlp-2020-saner,
title = "Named Entity Recognition for Social Media Texts with Semantic Augmentation",
author = "Nie, Yuyang and
Tian, Yuanhe and
Wan, Xiang and
Song, Yan and
Dai, Bo",
booktitle = "Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing",
month = nov,
year = "2020",
}
torch==1.1.0
spacy==2.2.4
tqdm==4.38.0
fastNLP==0.5
For English NER, we use two types of word embeddings, namely ELMo and BERT. Between them, ELMo can be automatically
downloaded by running the script run.py
; bert can be downloaded pre-trained BERT-large-cased
from Google or from HuggingFace.
If you download it from Google, you need to convert the model from TensorFlow version to PyTorch version.
For Chinese NER, we also use two types of word embeddings, namely Tencent Embedding and ZEN. Among them, Tencent Embedding can be downloaded from here, ZEN can be downloaded from here
Also, you can download gigaword embeddings from here
All pretrained embeddings should be placed in ./data/
After downloading Tencent Embedding
, you need to extract the unigrams according to python data_process.py --file_path=${PATH_TO_TENCENT_EMBEDDING}$
You can download the models we trained for each dataset from here.
Run run.py
to train a model on the small sample data under the sample_data
directory.
We use two English datasets (W16
, W17
) and a Chinese dataset (WB
) in our paper.
You can find the command lines to train models on a specific dataset in run.py
for English datasets and run_cn.py
for Chinese datasets.