Named Entity Recognition as Dependency Parsing
This repository contains code introduced in the following paper:
** [Named Entity Recognition as Dependency Parsing]
pip install -r requirements.txt
.extract_bert_features/extract_bert_features.sh
to compute the BERT embeddings for your training or testing.logs/
folder.Modifiy the test_path accordingly in the experiments.conf
:
the test_path is the path to .jsonlines file, each line of the .jsonlines file is a batch of sentences and must in the following format:
{"doc_key": "batch_01",
"ners": [[[0, 0, "PER"], [3, 3, "GPE"], [5, 5, "GPE"]],
[[3, 3, "PER"], [10, 14, "ORG"], [20, 20, "GPE"], [20, 25, "GPE"], [22, 22, "GPE"]],
[]],
"sentences": [["Anwar", "arrived", "in", "Shanghai", "from", "Nanjing", "yesterday", "afternoon", "."],
["This", "morning", ",", "Anwar", "attended", "the", "foundation", "laying", "ceremony", "of", "the", "Minhang", "China-Malaysia", "joint-venture", "enterprise", ",", "and", "after", "that", "toured", "Pudong", "'s", "Jingqiao", "export", "processing", "district", "."],
["(", "End", ")"]]}
ners
key, if some sentences do not contain NEs use an empty list []
instead.python evaluate.py config_name
to start your evaluationpython get_char_vocab.py train.jsonlines dev.jsonlines
python train.py config_name