Skip to content
/ NER Public

Named Entity Recognition using Continuous Word Embeddings with a biLSTM-CRF hybrid model, in PyTorch. Provides a fully vectorized implementation of linear chain CRFs.

License

Notifications You must be signed in to change notification settings

rVSaxena/NER

Repository files navigation

Named Entity Recognition

NER is the task of labelling words in a sentence as persons, locations, etc.

The task, in its entirety, involves selecting a sub-label amongst an hierarchy of NER labels. This implementation, though, does not delve into this hierarchy, rather the labels are clubbed until 9 high-level NER tags are left. BIO encoding has been used.

A hybrid biLSTM-CRF model is used, much as outlined in this paper. A fast implementation of linear chain CRFs with fully vectorized training is provided.

The dataset: Publicly available GMB dataset, see https://gmb.let.rug.nl/data.php
More about the NER task can be read here

About

Named Entity Recognition using Continuous Word Embeddings with a biLSTM-CRF hybrid model, in PyTorch. Provides a fully vectorized implementation of linear chain CRFs.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages