Skip to content
/ NER Public
forked from Raphael95/NER

Named Entity Recognition algorithm Based on Chinese characters

Notifications You must be signed in to change notification settings

Frances255/NER

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Named Entity Recognition base on Chinese with Bi-directional LSTM and CRF

1. required environment

environment version
numpy 1.13.3
tensorflow 1.6.0

2. description

Recurrent neural network takes as input a sequence of vectors (x1, x2, x3,,,,xn) that represents some information about sequence at every step in the input, but it fail to learn long dependencies, LSTM have designed to combat this issue by incorporating a memory-cell and have been shown to capture long-range dependencies.

Conditional Random Fileds can combine the context, for instance, the first word tag is B-PER, the second word can not be B tag, if the model do not take the crf layer into it, it may caculate the high probability that B can occur fater the B, so in order to reduce this error, we add a crf layer on the top of bi-lstm layer.

text cnn

Reference

  1. Bidirectional LSTM-CRF Models for Sequence Tagging. 2015
  2. Neural Architectures for Named Entity Recognition. 2016

About

Named Entity Recognition algorithm Based on Chinese characters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%