2017-04-07 14:05:12 +03:00
|
|
|
# coding: utf8
|
2017-04-13 14:51:54 +03:00
|
|
|
from __future__ import unicode_literals
|
2017-04-07 14:05:12 +03:00
|
|
|
|
2018-07-25 23:21:31 +03:00
|
|
|
import re
|
2017-04-07 14:05:12 +03:00
|
|
|
|
2019-11-11 19:35:27 +03:00
|
|
|
from spacy.gold import Example
|
2018-11-30 22:16:14 +03:00
|
|
|
from ...gold import iob_to_biluo
|
2017-04-07 14:05:12 +03:00
|
|
|
|
2018-07-25 23:21:31 +03:00
|
|
|
|
2019-09-11 14:27:37 +03:00
|
|
|
def conllu2json(input_data, n_sents=10, use_morphology=False, lang=None, **_):
|
2017-04-15 12:59:21 +03:00
|
|
|
"""
|
|
|
|
Convert conllu files into JSON format for use with train cli.
|
2017-04-07 14:05:12 +03:00
|
|
|
use_morphology parameter enables appending morphology to tags, which is
|
|
|
|
useful for languages such as Spanish, where UD tags are not so rich.
|
|
|
|
|
2018-07-25 23:21:31 +03:00
|
|
|
Extract NER tags if available and convert them so that they follow
|
|
|
|
BILUO and the Wikipedia scheme
|
|
|
|
"""
|
2018-11-30 22:16:14 +03:00
|
|
|
# by @dvsrepo, via #11 explosion/spacy-dev-resources
|
2018-07-25 23:21:31 +03:00
|
|
|
# by @katarkor
|
2017-04-07 14:05:12 +03:00
|
|
|
docs = []
|
|
|
|
sentences = []
|
2019-11-11 19:35:27 +03:00
|
|
|
conll_data = read_conllx(input_data, use_morphology=use_morphology)
|
2018-07-25 23:21:31 +03:00
|
|
|
checked_for_ner = False
|
|
|
|
has_ner_tags = False
|
2019-11-11 19:35:27 +03:00
|
|
|
for i, example in enumerate(conll_data):
|
|
|
|
for token_annotation in example.token_annotations:
|
|
|
|
if not checked_for_ner:
|
|
|
|
has_ner_tags = is_ner(token_annotation.entities[0])
|
|
|
|
checked_for_ner = True
|
|
|
|
sentences.append(generate_sentence(token_annotation, has_ner_tags))
|
|
|
|
# Real-sized documents could be extracted using the comments on the
|
|
|
|
# conluu document
|
|
|
|
if len(sentences) % n_sents == 0:
|
|
|
|
doc = create_doc(sentences, i)
|
|
|
|
docs.append(doc)
|
|
|
|
sentences = []
|
2018-11-30 22:16:14 +03:00
|
|
|
return docs
|
2017-04-07 14:05:12 +03:00
|
|
|
|
|
|
|
|
2018-07-25 23:21:31 +03:00
|
|
|
def is_ner(tag):
|
2018-11-30 22:16:14 +03:00
|
|
|
"""
|
2018-07-25 23:21:31 +03:00
|
|
|
Check the 10th column of the first token to determine if the file contains
|
2018-11-30 22:16:14 +03:00
|
|
|
NER tags
|
2018-07-25 23:21:31 +03:00
|
|
|
"""
|
2018-11-30 22:16:14 +03:00
|
|
|
tag_match = re.match("([A-Z_]+)-([A-Z_]+)", tag)
|
2018-07-25 23:21:31 +03:00
|
|
|
if tag_match:
|
|
|
|
return True
|
|
|
|
elif tag == "O":
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2018-11-30 22:16:14 +03:00
|
|
|
|
|
|
|
def read_conllx(input_data, use_morphology=False, n=0):
|
2019-11-11 19:35:27 +03:00
|
|
|
""" Yield example data points, one for each sentence """
|
2017-04-07 14:05:12 +03:00
|
|
|
i = 0
|
2018-11-30 22:16:14 +03:00
|
|
|
for sent in input_data.strip().split("\n\n"):
|
|
|
|
lines = sent.strip().split("\n")
|
2017-04-07 14:05:12 +03:00
|
|
|
if lines:
|
2018-11-30 22:16:14 +03:00
|
|
|
while lines[0].startswith("#"):
|
2017-04-07 14:05:12 +03:00
|
|
|
lines.pop(0)
|
2019-11-11 19:35:27 +03:00
|
|
|
ids, words, tags, heads, deps, ents = [], [], [], [], [], []
|
2017-04-07 14:05:12 +03:00
|
|
|
for line in lines:
|
2018-11-30 22:16:14 +03:00
|
|
|
parts = line.split("\t")
|
2018-07-25 23:21:31 +03:00
|
|
|
id_, word, lemma, pos, tag, morph, head, dep, _1, iob = parts
|
2018-11-30 22:16:14 +03:00
|
|
|
if "-" in id_ or "." in id_:
|
2017-04-07 14:05:12 +03:00
|
|
|
continue
|
|
|
|
try:
|
|
|
|
id_ = int(id_) - 1
|
2018-11-30 22:16:14 +03:00
|
|
|
head = (int(head) - 1) if head != "0" else id_
|
|
|
|
dep = "ROOT" if dep == "root" else dep
|
|
|
|
tag = pos if tag == "_" else tag
|
|
|
|
tag = tag + "__" + morph if use_morphology else tag
|
2019-03-15 20:14:46 +03:00
|
|
|
iob = iob if iob else "O"
|
2019-11-11 19:35:27 +03:00
|
|
|
|
|
|
|
ids.append(id_)
|
|
|
|
words.append(word)
|
|
|
|
tags.append(tag)
|
|
|
|
heads.append(head)
|
|
|
|
deps.append(dep)
|
|
|
|
ents.append(iob)
|
2018-11-30 22:16:14 +03:00
|
|
|
except: # noqa: E722
|
2017-04-07 14:05:12 +03:00
|
|
|
print(line)
|
|
|
|
raise
|
2019-11-11 19:35:27 +03:00
|
|
|
example = Example(doc=None)
|
|
|
|
example.add_token_annotation(ids=ids, words=words, tags=tags,
|
|
|
|
heads=heads, deps=deps, entities=ents)
|
|
|
|
yield example
|
2017-04-07 14:05:12 +03:00
|
|
|
i += 1
|
2019-11-11 19:35:27 +03:00
|
|
|
if 1 <= n <= i:
|
2017-04-07 14:05:12 +03:00
|
|
|
break
|
|
|
|
|
2018-11-30 22:16:14 +03:00
|
|
|
|
2018-07-25 23:21:31 +03:00
|
|
|
def simplify_tags(iob):
|
|
|
|
"""
|
|
|
|
Simplify tags obtained from the dataset in order to follow Wikipedia
|
|
|
|
scheme (PER, LOC, ORG, MISC). 'PER', 'LOC' and 'ORG' keep their tags, while
|
|
|
|
'GPE_LOC' is simplified to 'LOC', 'GPE_ORG' to 'ORG' and all remaining tags to
|
2018-11-30 22:16:14 +03:00
|
|
|
'MISC'.
|
2018-07-25 23:21:31 +03:00
|
|
|
"""
|
|
|
|
new_iob = []
|
|
|
|
for tag in iob:
|
2018-11-30 22:16:14 +03:00
|
|
|
tag_match = re.match("([A-Z_]+)-([A-Z_]+)", tag)
|
2018-07-25 23:21:31 +03:00
|
|
|
if tag_match:
|
|
|
|
prefix = tag_match.group(1)
|
|
|
|
suffix = tag_match.group(2)
|
2018-11-30 22:16:14 +03:00
|
|
|
if suffix == "GPE_LOC":
|
|
|
|
suffix = "LOC"
|
|
|
|
elif suffix == "GPE_ORG":
|
|
|
|
suffix = "ORG"
|
|
|
|
elif suffix != "PER" and suffix != "LOC" and suffix != "ORG":
|
|
|
|
suffix = "MISC"
|
|
|
|
tag = prefix + "-" + suffix
|
2018-07-25 23:21:31 +03:00
|
|
|
new_iob.append(tag)
|
|
|
|
return new_iob
|
2017-04-07 14:05:12 +03:00
|
|
|
|
2018-11-30 22:16:14 +03:00
|
|
|
|
2019-11-11 19:35:27 +03:00
|
|
|
def generate_sentence(token_annotation, has_ner_tags):
|
2017-04-07 14:05:12 +03:00
|
|
|
sentence = {}
|
|
|
|
tokens = []
|
2018-07-25 23:21:31 +03:00
|
|
|
if has_ner_tags:
|
2019-11-11 19:35:27 +03:00
|
|
|
iob = simplify_tags(token_annotation.entities)
|
2018-07-25 23:21:31 +03:00
|
|
|
biluo = iob_to_biluo(iob)
|
2019-11-11 19:35:27 +03:00
|
|
|
for i, id in enumerate(token_annotation.ids):
|
2017-04-07 14:05:12 +03:00
|
|
|
token = {}
|
2018-07-25 23:21:31 +03:00
|
|
|
token["id"] = id
|
2019-11-11 19:35:27 +03:00
|
|
|
token["orth"] = token_annotation.words[i]
|
|
|
|
token["tag"] = token_annotation.tags[i]
|
|
|
|
token["head"] = token_annotation.heads[i] - id
|
|
|
|
token["dep"] = token_annotation.deps[i]
|
2018-07-25 23:21:31 +03:00
|
|
|
if has_ner_tags:
|
|
|
|
token["ner"] = biluo[i]
|
2017-04-07 14:05:12 +03:00
|
|
|
tokens.append(token)
|
|
|
|
sentence["tokens"] = tokens
|
|
|
|
return sentence
|
|
|
|
|
|
|
|
|
2018-11-30 22:16:14 +03:00
|
|
|
def create_doc(sentences, id):
|
2017-04-07 14:05:12 +03:00
|
|
|
doc = {}
|
|
|
|
paragraph = {}
|
|
|
|
doc["id"] = id
|
|
|
|
doc["paragraphs"] = []
|
|
|
|
paragraph["sentences"] = sentences
|
|
|
|
doc["paragraphs"].append(paragraph)
|
|
|
|
return doc
|