2015-02-21 18:38:18 +03:00
|
|
|
from cymem.cymem cimport Pool
|
|
|
|
from ._state cimport State
|
|
|
|
from ..structs cimport TokenC
|
|
|
|
from thinc.typedefs cimport weight_t
|
|
|
|
|
|
|
|
|
|
|
|
cdef weight_t MIN_SCORE = -90000
|
|
|
|
|
|
|
|
|
2015-02-22 08:32:07 +03:00
|
|
|
class OracleError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-02-21 18:38:18 +03:00
|
|
|
cdef class TransitionSystem:
|
2015-03-14 18:06:35 +03:00
|
|
|
def __init__(self, StringStore string_table, dict labels_by_action):
|
2015-02-21 18:38:18 +03:00
|
|
|
self.mem = Pool()
|
2015-02-23 22:04:53 +03:00
|
|
|
self.n_moves = sum(len(labels) for labels in labels_by_action.values())
|
2015-06-02 00:05:25 +03:00
|
|
|
self._is_valid = <bint*>self.mem.alloc(self.n_moves, sizeof(bint))
|
2015-02-21 18:38:18 +03:00
|
|
|
moves = <Transition*>self.mem.alloc(self.n_moves, sizeof(Transition))
|
|
|
|
cdef int i = 0
|
2015-02-23 22:04:53 +03:00
|
|
|
cdef int label_id
|
2015-03-14 18:06:35 +03:00
|
|
|
self.strings = string_table
|
2015-02-21 18:38:18 +03:00
|
|
|
for action, label_strs in sorted(labels_by_action.items()):
|
2015-02-23 22:04:53 +03:00
|
|
|
for label_str in sorted(label_strs):
|
2015-03-16 15:32:23 +03:00
|
|
|
label_id = self.strings[unicode(label_str)] if label_str else 0
|
2015-02-23 22:04:53 +03:00
|
|
|
moves[i] = self.init_transition(i, int(action), label_id)
|
|
|
|
i += 1
|
2015-02-21 18:38:18 +03:00
|
|
|
self.c = moves
|
|
|
|
|
2015-04-28 21:45:51 +03:00
|
|
|
cdef int initialize_state(self, State* state) except -1:
|
|
|
|
pass
|
|
|
|
|
|
|
|
cdef int finalize_state(self, State* state) except -1:
|
|
|
|
pass
|
2015-03-10 20:00:23 +03:00
|
|
|
|
2015-03-09 14:06:01 +03:00
|
|
|
cdef int preprocess_gold(self, GoldParse gold) except -1:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
cdef Transition lookup_transition(self, object name) except *:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2015-02-21 18:38:18 +03:00
|
|
|
cdef Transition init_transition(self, int clas, int move, int label) except *:
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
cdef Transition best_valid(self, const weight_t* scores, const State* s) except *:
|
2015-02-21 19:06:37 +03:00
|
|
|
raise NotImplementedError
|
2015-06-02 00:05:25 +03:00
|
|
|
|
2015-06-02 19:38:07 +03:00
|
|
|
cdef int set_valid(self, bint* output, const State* state) except -1:
|
2015-06-02 00:05:25 +03:00
|
|
|
raise NotImplementedError
|
2015-02-21 18:38:18 +03:00
|
|
|
|
|
|
|
cdef Transition best_gold(self, const weight_t* scores, const State* s,
|
2015-02-22 08:32:07 +03:00
|
|
|
GoldParse gold) except *:
|
2015-02-21 18:38:18 +03:00
|
|
|
cdef Transition best
|
|
|
|
cdef weight_t score = MIN_SCORE
|
|
|
|
cdef int i
|
|
|
|
for i in range(self.n_moves):
|
2015-06-02 21:01:06 +03:00
|
|
|
cost = self.c[i].get_cost(&self.c[i], s, &gold.c)
|
2015-03-27 17:21:38 +03:00
|
|
|
if scores[i] > score and cost == 0:
|
2015-02-21 18:38:18 +03:00
|
|
|
best = self.c[i]
|
|
|
|
score = scores[i]
|
2015-03-08 08:15:20 +03:00
|
|
|
assert score > MIN_SCORE
|
2015-02-21 18:38:18 +03:00
|
|
|
return best
|
2015-03-09 08:46:22 +03:00
|
|
|
|
|
|
|
|
|
|
|
#cdef class PyState:
|
|
|
|
# """Provide a Python class for testing purposes."""
|
|
|
|
# def __init__(self, GoldParse gold):
|
|
|
|
# self.mem = Pool()
|
|
|
|
# self.system = EntityRecognition(labels)
|
|
|
|
# self._state = init_state(self.mem, tokens, gold.length)
|
|
|
|
#
|
|
|
|
# def transition(self, name):
|
|
|
|
# cdef const Transition* trans = self._transition_by_name(name)
|
|
|
|
# trans.do(trans, self._state)
|
|
|
|
#
|
|
|
|
# def is_valid(self, name):
|
|
|
|
# cdef const Transition* trans = self._transition_by_name(name)
|
|
|
|
# return _is_valid(trans.move, trans.label, self._state)
|
|
|
|
#
|
|
|
|
# def is_gold(self, name):
|
|
|
|
# cdef const Transition* trans = self._transition_by_name(name)
|
|
|
|
# return _get_const(trans, self._state, self._gold)
|
|
|
|
#
|
|
|
|
# property ent:
|
|
|
|
# def __get__(self):
|
|
|
|
# pass
|
|
|
|
#
|
|
|
|
# property n_ents:
|
|
|
|
# def __get__(self):
|
|
|
|
# pass
|
|
|
|
#
|
|
|
|
# property i:
|
|
|
|
# def __get__(self):
|
|
|
|
# pass
|
|
|
|
#
|
|
|
|
# property open_entity:
|
|
|
|
# def __get__(self):
|
|
|
|
# return entity_is_open(self._s)
|