Skip to content

Commit dc60028

Browse files
yingweixinsebastianruder
authored andcommitted
add NER state-of-the-art result (#296)
Add NER state-of-the-art result with EMNLP 2018 paper (Learning Better Internal Structure of Words for Sequence Labeling), this paper proposed IntNet, which mainly focus on learning better character-to-word representations, IntNet significantly outperformed other character embedding models, and also combined with BiLSTM-CRF achieved state-of-the-art NER result without using any lexical features, transfer learning, language modeling or pre-training.
1 parent 5dcf313 commit dc60028

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

english/named_entity_recognition.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ corpus tagged with four different entity types (PER, LOC, ORG, MISC). Models are
2828
| Peters et al. (2017) ♦| 91.93 | [Semi-supervised sequence tagging with bidirectional language models](https://arxiv.org/abs/1705.00108) | |
2929
| CRF + AutoEncoder (Wu et al., 2018) | 91.87 | [Evaluating the Utility of Hand-crafted Features in Sequence Labelling](http://aclweb.org/anthology/D18-1310) | [Official](https://github.com/minghao-wu/CRF-AE) |
3030
| Bi-LSTM-CRF + Lexical Features (Ghaddar and Langlais 2018) | 91.73 | [Robust Lexical Features for Improved Neural Network Named-Entity Recognition](https://arxiv.org/pdf/1806.03489.pdf) | [Official](https://github.com/ghaddarAbs/NER-with-LS) |
31+
| BiLSTM-CRF + IntNet (Xin et al., 2018) | 91.64 | [Learning Better Internal Structure of Words for Sequence Labeling](https://www.aclweb.org/anthology/D18-1279) | |
3132
| Chiu and Nichols (2016) ♦| 91.62 | [Named entity recognition with bidirectional LSTM-CNNs](https://arxiv.org/abs/1511.08308) | |
3233
| HSCRF (Ye and Ling, 2018)| 91.38 | [Hybrid semi-Markov CRF for Neural Sequence Labeling](http://aclweb.org/anthology/P18-2038) | [HSCRF](https://github.com/ZhixiuYe/HSCRF-pytorch) |
3334
| IXA pipes (Agerri and Rigau 2016) | 91.36 | [Robust multilingual Named Entity Recognition with shallow semi-supervised features](https://doi.org/10.1016/j.artint.2016.05.003)| [Official](https://github.com/ixa-ehu/ixa-pipe-nerc)|

0 commit comments

Comments
 (0)