Skip to content

huangxt39/LSTM-CRF-pytorch

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

This is a simple implementation of the paper (Lample et al., 2016), with all the code in a single file "lstm-crf-pytorch.py". This implementation supports batch training and batch inference.

Quick Start

First, you need to download the GloVe Word Embedding and unzip it. Then put the file "glove.6B.100d.txt" into the directory "dataset_ner"

Now you may run it on a GPU via

python lstm-crf-pytorch.py

Then the model will be trained from scratch and be evaluated every epoch, using CoNLL evaluation script.

If you want to run it on CPU, just remove all the ".cuda()" in the code and use the command above. This may sound sort of primitive...

Result

The model achieves 90.08 F1 score on test split, which is comparable to (Lample et al., 2016). You may achieve better results by selecting better hyperparameters.

About

simple implementation of LSTM-CRF for NER using pytorch

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors