spaCy/spacy/syntax/ner.pyx

281 lines
8.0 KiB
Cython
Raw Normal View History

2015-02-02 08:38:52 +03:00
from __future__ import unicode_literals
from ._state cimport State
2015-03-09 08:46:22 +03:00
from .transition_system cimport Transition
from .transition_system cimport do_func_t
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
from ..structs cimport TokenC, Entity
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
from thinc.typedefs cimport weight_t
from .conll cimport GoldParse
2015-02-02 08:38:52 +03:00
cdef enum:
MISSING
BEGIN
IN
LAST
UNIT
OUT
N_MOVES
2015-03-23 17:34:08 +03:00
MOVE_NAMES = [None] * N_MOVES
MOVE_NAMES[MISSING] = 'M'
MOVE_NAMES[BEGIN] = 'B'
MOVE_NAMES[IN] = 'I'
MOVE_NAMES[LAST] = 'L'
MOVE_NAMES[UNIT] = 'U'
MOVE_NAMES[OUT] = 'O'
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
cdef do_func_t[N_MOVES] do_funcs
cdef bint entity_is_open(const State *s) except -1:
return s.ents_len >= 1 and s.ent.end == 0
2015-03-09 08:46:22 +03:00
cdef bint _entity_is_sunk(const State *s, Transition* golds) except -1:
if not entity_is_open(s):
return False
cdef const Transition* gold = &golds[s.ent.start]
2015-03-09 08:46:22 +03:00
if gold.move != BEGIN and gold.move != UNIT:
return True
elif gold.label != s.ent.label:
return True
else:
return False
cdef int _is_valid(int act, int label, const State* s) except -1:
if act == MISSING:
return False
elif act == BEGIN:
return label != 0 and not entity_is_open(s)
2015-02-02 08:38:52 +03:00
elif act == IN:
return entity_is_open(s) and label != 0 and s.ent.label == label
2015-02-02 08:38:52 +03:00
elif act == LAST:
return entity_is_open(s) and label != 0 and s.ent.label == label
2015-02-02 08:38:52 +03:00
elif act == UNIT:
return label != 0 and not entity_is_open(s)
2015-02-02 08:38:52 +03:00
elif act == OUT:
return not entity_is_open(s)
else:
raise UnknownMove(act, label)
2015-03-09 08:46:22 +03:00
cdef class BiluoPushDown(TransitionSystem):
@classmethod
def get_labels(cls, gold_tuples):
move_labels = {MISSING: {'': True}, BEGIN: {}, IN: {}, LAST: {}, UNIT: {},
OUT: {'': True}}
moves = ('M', 'B', 'I', 'L', 'U')
for (raw_text, tuples, ctnt) in gold_tuples:
ids, words, tags, heads, labels, biluo = tuples
for i, ner_tag in enumerate(biluo):
2015-03-09 08:46:22 +03:00
if ner_tag != 'O' and ner_tag != '-':
if ner_tag.count('-') != 1:
raise ValueError(ner_tag)
_, label = ner_tag.split('-')
for move_str in ('B', 'I', 'L', 'U'):
move_labels[moves.index(move_str)][label] = True
2015-03-09 08:46:22 +03:00
return move_labels
def move_name(self, int move, int label):
if move == OUT:
return 'O'
elif move == 'MISSING':
return 'M'
else:
return MOVE_NAMES[move] + '-' + self.strings[label]
cdef int preprocess_gold(self, GoldParse gold) except -1:
for i in range(gold.length):
gold.c_ner[i] = self.lookup_transition(gold.ner[i])
cdef Transition lookup_transition(self, object name) except *:
if name == '-':
move_str = 'M'
label = 0
elif '-' in name:
move_str, label_str = name.split('-', 1)
label = self.strings[label_str]
else:
move_str = name
label = 0
move = MOVE_NAMES.index(move_str)
for i in range(self.n_moves):
if self.c[i].move == move and self.c[i].label == label:
return self.c[i]
else:
2015-04-16 02:36:22 +03:00
raise KeyError(name)
2015-03-09 08:46:22 +03:00
cdef Transition init_transition(self, int clas, int move, int label) except *:
# TODO: Apparent Cython bug here when we try to use the Transition()
# constructor with the function pointers
cdef Transition t
t.score = 0
t.clas = clas
t.move = move
t.label = label
t.do = do_funcs[move]
t.get_cost = _get_cost
return t
cdef Transition best_valid(self, const weight_t* scores, const State* s) except *:
cdef int best = -1
cdef weight_t score = -90000
cdef const Transition* m
cdef int i
for i in range(self.n_moves):
m = &self.c[i]
if _is_valid(m.move, m.label, s) and scores[i] > score:
best = i
score = scores[i]
assert best >= 0
cdef Transition t = self.c[best]
t.score = score
return t
cdef int _get_cost(const Transition* self, const State* s, GoldParse gold) except -1:
if not _is_valid(self.move, self.label, s):
return 9000
cdef bint is_sunk = _entity_is_sunk(s, gold.c_ner)
cdef int next_act = gold.c_ner[s.i+1].move if s.i < s.sent_len else OUT
cdef bint is_gold = _is_gold(self.move, self.label, gold.c_ner[s.i].move,
gold.c_ner[s.i].label, next_act, is_sunk)
return not is_gold
2015-03-09 08:46:22 +03:00
2015-03-09 08:46:22 +03:00
cdef bint _is_gold(int act, int tag, int g_act, int g_tag,
int next_act, bint is_sunk):
2015-02-02 08:38:52 +03:00
if g_act == MISSING:
return True
if act == BEGIN:
if g_act == BEGIN:
# B, Gold B --> Label match
return tag == g_tag
else:
# B, Gold I --> False (P)
# B, Gold L --> False (P)
# B, Gold O --> False (P)
# B, Gold U --> False (P)
return False
elif act == IN:
if g_act == BEGIN:
# I, Gold B --> True (P of bad open entity sunk, R of this entity sunk)
return True
elif g_act == IN:
# I, Gold I --> True (label forced by prev, if mismatch, P and R both sunk)
return True
elif g_act == LAST:
# I, Gold L --> True iff this entity sunk and next tag == O
return is_sunk and (next_act == OUT or next_act == MISSING)
elif g_act == OUT:
# I, Gold O --> True iff next tag == O
return next_act == OUT or next_act == MISSING
elif g_act == UNIT:
# I, Gold U --> True iff next tag == O
return next_act == OUT
elif act == LAST:
if g_act == BEGIN:
# L, Gold B --> True
return True
elif g_act == IN:
# L, Gold I --> True iff this entity sunk
return is_sunk
elif g_act == LAST:
# L, Gold L --> True
return True
elif g_act == OUT:
# L, Gold O --> True
return True
elif g_act == UNIT:
# L, Gold U --> True
return True
elif act == OUT:
if g_act == BEGIN:
# O, Gold B --> False
return False
elif g_act == IN:
# O, Gold I --> True
return True
elif g_act == LAST:
# O, Gold L --> True
return True
elif g_act == OUT:
# O, Gold O --> True
return True
elif g_act == UNIT:
# O, Gold U --> False
return False
elif act == UNIT:
if g_act == UNIT:
# U, Gold U --> True iff tag match
return tag == g_tag
else:
# U, Gold B --> False
# U, Gold I --> False
# U, Gold L --> False
# U, Gold O --> False
return False
2015-03-09 08:46:22 +03:00
cdef int _do_begin(const Transition* self, State* s) except -1:
s.ent += 1
s.ents_len += 1
s.ent.start = s.i
s.ent.label = self.label
s.ent.end = 0
s.sent[s.i].ent_iob = 3
s.sent[s.i].ent_type = self.label
2015-03-09 08:46:22 +03:00
s.i += 1
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
cdef int _do_in(const Transition* self, State* s) except -1:
s.sent[s.i].ent_iob = 1
s.sent[s.i].ent_type = self.label
2015-03-09 08:46:22 +03:00
s.i += 1
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
cdef int _do_last(const Transition* self, State* s) except -1:
s.ent.end = s.i+1
s.sent[s.i].ent_iob = 1
s.sent[s.i].ent_type = self.label
2015-03-09 08:46:22 +03:00
s.i += 1
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
cdef int _do_unit(const Transition* self, State* s) except -1:
s.ent += 1
s.ents_len += 1
s.ent.start = s.i
s.ent.label = self.label
s.ent.end = s.i+1
s.sent[s.i].ent_iob = 3
s.sent[s.i].ent_type = self.label
2015-03-09 08:46:22 +03:00
s.i += 1
cdef int _do_out(const Transition* self, State* s) except -1:
s.sent[s.i].ent_iob = 2
2015-03-09 08:46:22 +03:00
s.i += 1
2015-02-02 08:38:52 +03:00
2015-03-09 08:46:22 +03:00
do_funcs[BEGIN] = _do_begin
do_funcs[IN] = _do_in
do_funcs[LAST] = _do_last
do_funcs[UNIT] = _do_unit
do_funcs[OUT] = _do_out
2015-02-02 08:38:52 +03:00
class OracleError(Exception):
pass
class UnknownMove(Exception):
pass