README.md

April 14, 2018 ยท View on GitHub

Goal

  • This repo contains an MXNet implementation of this state of the art entity recognition model.
  • You can find my blog post on the model here.

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

Contents

  1. 1Goal
  2. 2Running the code