CDMA-NER is a framework for cross-domain named entity recognition based on our proposed neural adaptation layers. The major advantages of the CDMA-NER are as follows:
- being lightweight (a minimum need for retraining, once you have a ready pre-trained source model),
- exploiting the power of domain-specific word embeddings while improving the transferability.
- better performance than simple transfer learning techniques like fine-tuning and multi-task learning.
Simply put, the CDMA-NER needs a pre-trained source model trained with word embeddings from a source-domain corpus. We first train a word adaptation layer based on the word frequency lists of the source and target corpus as well as optional "pivot lexicon". Then, just feed a relatively smaller training data set to the interested target model with target-specific label space. The target model in CDMA-NER has a sentence-level and a output-level adaptation layer addressing domain shift at the different levels respectively. Note that a great feature of CDMA-NER is that you can use a totally different sets of entity types.
All the code are runnable under python 3.5.2 and tensorflow 1.5, while other common environment should be okay as well. When the necessary material are ready, you can run the code step by step as follows. Make sure you have prepared your source and target corpora, datasets and pre-trained word embeedeings as well as optional pivot lexicon if you need.
-
For word adaptation, you can first run the codes in
src/word_adapt
to get the pivot lexicon based on intersection of source&target domain corpora. We also include a simple linear transformation to obtain cross-domain word embeddings for target domain, while we suggest run CCA to get that. -
Building char, tag, word sets:
cd src/
python prep_source_data.py
python prep_target_data.py
After this, you should have a data
folder at the same level containing source/target_x.txt for further computation in the following steps. Note that you have to put the source and target domain-specific word embeddings as source.emb
and target.emb
in the resource
folder.
Running
python train_source.py
will give you a trained source model based on BLSTM_CRF for source NER data set. You can change the path to the source corpus and embeddings in the prep_source_data.py
and train_source.py
. The model training will stop when the performance is not increasing up to 5 epochs, which you can change in the model/config.py
.
Finally, you can now run
python transfer2target.py
to transfer the source model by fine-tuning it with data in target domain. The model path is saved at results/target/model.weigths/
.
For tagging new data or evaluating the results on test data, you can follow the scripts in evaluate.py
.
-
Source Domain (Newswire)
- CoNLL 2003
- OntoNotes 5.0
- source corpus (NYT + DailyMail)
-
Target Domain (Social Media)
- Ritter 2011
- WNUT 2016
- target corpus (Twitter Stream Grab)
- Twitter Normalization Lexicon (Liu et al. ACL 2012)
-
General Domain (only used for ablation study)
Following the above steps with such resources, you can replicate our experiments in the paper. For more details and experiments, please refer to our paper "Neural Adaptation Layers for Cross-domain Named Entity Recognition" (Lin and Lu, EMNLP 2018) and the supplementary material.
@InProceedings{bylin-18-nalner,
author = {Lin, Bill Yuchen and Lu, Wei},
title = {Neural Adaptation Layers for Cross-domain Named Entity Recognition},
booktitle = {Proceedings of the Conference on Empirical Methods on Natural Language Processing (EMNLP)},
month = {November},
year = {2018},
address = {Brussels, Belgium},
publisher = {Association for Computational Linguistics},
}
Some of the pre-processing and general utils are inspired by this blog.