Merge pull request #1119 from oroszgy/patch-3

Fixed conllu converter
This commit is contained in:
Matthew Honnibal 2017-06-20 11:14:41 +02:00 committed by GitHub
commit 8ea785e01a

View File

@ -73,10 +73,10 @@ def generate_sentence(sent):
tokens = []
for i, id in enumerate(id_):
token = {}
token["orth"] = word[id]
token["tag"] = tag[id]
token["head"] = head[id] - i
token["dep"] = dep[id]
token["orth"] = word[i]
token["tag"] = tag[i]
token["head"] = head[i] - id
token["dep"] = dep[i]
tokens.append(token)
sentence["tokens"] = tokens
return sentence