mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 01:16:28 +03:00
Use tag in CoNLL converter, not POS
This commit is contained in:
parent
c9a5d5d24b
commit
3bf4a28d8d
|
@ -54,7 +54,7 @@ def read_conllx(input_path, use_morphology=False, n=0):
|
||||||
id_ = int(id_) - 1
|
id_ = int(id_) - 1
|
||||||
head = (int(head) - 1) if head != '0' else id_
|
head = (int(head) - 1) if head != '0' else id_
|
||||||
dep = 'ROOT' if dep == 'root' else dep
|
dep = 'ROOT' if dep == 'root' else dep
|
||||||
tag = pos+'__'+morph if use_morphology else pos
|
tag = tag+'__'+morph if use_morphology else tag
|
||||||
tokens.append((id_, word, tag, head, dep, 'O'))
|
tokens.append((id_, word, tag, head, dep, 'O'))
|
||||||
except:
|
except:
|
||||||
print(line)
|
print(line)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user