layered-bilstm-crf

  • Owner: meizhiju/layered-bilstm-crf
  • Platform:
  • License:: Other
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

Nested-NER

Nested-NER is an implementation of [A Neural Layered Model for Nested Named Entity Recognition] (http://aclweb.org/anthology/N18-1131).

Requirements

  • Ubuntu 16.04
  • chainer 3.3.0
  • python 3.5.2
  • numpy 1.14.1
  • cupy 2.4.0
  • cuda 9.1
  • cudnn 7.0

Data format

Each line has multiple columns separated by a tab key.
Each line contains

word	label1	label2	label3	...	labelN

The number of labels (N) for each word is determined by the maximum nested level in the data set. N=maximum nested level + 1
Each sentence is separated by an empty line.
For example, for these two sentences, John killed Mary's husband. He was arrested last night , they contain four entities: John (PER), Mary(PER), Mary's husband(PER),He (PER).
The format for these two sentences is listed as following:

John    B-PER   O   O
killed  O   O   O
Mary    B-PER   B-PER   O
's  O   I-PER   O
husband O   I-PER   O
.   O   O   O

He    B-PER   O   O
was  O   O   O
arrested  O   O   O
last  O   O   O
night  O   O   O
.  O   O   O

Pretrained word embeddings

Configuration

Parameters are listed in the config file which is located in the layered-bilstm-crf/src folder.
Before running the codes, please change the parameters with specific values.

Usage

Training

cd layered-bilstm-crf/src/
python3 train.py

Testing

cd layered-bilstm-crf/src
python3 test.py

Please cite our NAACL paper when using this code.

Main metrics

Overview
Name With Ownermeizhiju/layered-bilstm-crf
Primary LanguagePython
Program languagePython (Language Count: 1)
Platform
License:Other
所有者活动
Created At2018-04-11 10:04:18
Pushed At2018-09-22 11:26:22
Last Commit At2018-09-22 12:26:09
Release Count1
Last Release Namev1.0 (Posted on )
First Release Namev1.0 (Posted on )
用户参与
Stargazers Count100
Watchers Count5
Fork Count25
Commits Count3
Has Issues Enabled
Issues Count2
Issue Open Count2
Pull Requests Count0
Pull Requests Open Count0
Pull Requests Close Count0
项目设置
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private