mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-24 17:06:29 +03:00
* Ensure NER moves are available for single-word tokens
This commit is contained in:
parent
a60a366b2c
commit
5a075ea3fc
|
@ -76,8 +76,9 @@ cdef class BiluoPushDown(TransitionSystem):
|
||||||
for (raw_text, toks, (ids, words, tags, heads, labels, biluo)) in gold_tuples:
|
for (raw_text, toks, (ids, words, tags, heads, labels, biluo)) in gold_tuples:
|
||||||
for i, ner_tag in enumerate(biluo):
|
for i, ner_tag in enumerate(biluo):
|
||||||
if ner_tag != 'O' and ner_tag != '-':
|
if ner_tag != 'O' and ner_tag != '-':
|
||||||
move_str, label = ner_tag.split('-')
|
_, label = ner_tag.split('-')
|
||||||
move_labels[moves.index(move_str)][label] = True
|
for move_str in ('B', 'I', 'L', 'U'):
|
||||||
|
move_labels[moves.index(move_str)][label] = True
|
||||||
return move_labels
|
return move_labels
|
||||||
|
|
||||||
def move_name(self, int move, int label):
|
def move_name(self, int move, int label):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user