Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/opringle/named_entity_recognition

A place to implement state of the art deep learning methods for named entity recognition using python and MXNet.
https://github.com/opringle/named_entity_recognition

Last synced: 2 months ago
JSON representation

A place to implement state of the art deep learning methods for named entity recognition using python and MXNet.

Awesome Lists containing this project

README

        

## Goal

- This repo contains an MXNet implementation of this state of the art [entity recognition model](https://www.aclweb.org/anthology/Q16-1026).
- You can find my blog post on the model [here](https://opringle.github.io/2018/02/06/CNNLSTM_entity_recognition.html).

## Running the code

1. Clone this repo
2. Train the model: `$ cd src && python ner.py`

To reproduce the preprocessed training data:

1. Download and unzip the data: https://www.kaggle.com/abhinavwalia95/entity-annotated-corpus/downloads/ner_dataset.csv
2. Move ner_dataset.csv into `./data`
3. `$ cd src && python preprocess.py`