2015-01-24 09:29:04 +03:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-12-16 14:44:43 +03:00
|
|
|
from ._state cimport State
|
|
|
|
from ._state cimport has_head, get_idx, get_s0, get_n0
|
|
|
|
from ._state cimport is_final, at_eol, pop_stack, push_stack, add_dep
|
|
|
|
from ._state cimport head_in_buffer, children_in_buffer
|
|
|
|
from ._state cimport head_in_stack, children_in_stack
|
|
|
|
|
2014-12-20 21:42:23 +03:00
|
|
|
from ..structs cimport TokenC
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
from .transition_system cimport do_func_t, get_cost_func_t
|
|
|
|
from .conll cimport GoldParse
|
|
|
|
|
2015-01-27 19:09:45 +03:00
|
|
|
|
2014-12-20 21:42:23 +03:00
|
|
|
DEF NON_MONOTONIC = True
|
2015-01-27 19:09:45 +03:00
|
|
|
DEF USE_BREAK = True
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef weight_t MIN_SCORE = -90000
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
# Break transition from here
|
|
|
|
# http://www.aclweb.org/anthology/P13-1074
|
2014-12-16 14:44:43 +03:00
|
|
|
cdef enum:
|
|
|
|
SHIFT
|
|
|
|
REDUCE
|
|
|
|
LEFT
|
|
|
|
RIGHT
|
2015-01-28 22:22:03 +03:00
|
|
|
BREAK
|
2014-12-16 14:44:43 +03:00
|
|
|
N_MOVES
|
|
|
|
|
2015-03-09 14:06:01 +03:00
|
|
|
MOVE_NAMES = [None] * N_MOVES
|
|
|
|
MOVE_NAMES[SHIFT] = 'S'
|
|
|
|
MOVE_NAMES[REDUCE] = 'D'
|
|
|
|
MOVE_NAMES[LEFT] = 'L'
|
|
|
|
MOVE_NAMES[RIGHT] = 'R'
|
|
|
|
MOVE_NAMES[BREAK] = 'B'
|
|
|
|
|
2015-01-27 19:18:43 +03:00
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef do_func_t[N_MOVES] do_funcs
|
|
|
|
cdef get_cost_func_t[N_MOVES] get_cost_funcs
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef class ArcEager(TransitionSystem):
|
2015-02-22 08:32:07 +03:00
|
|
|
@classmethod
|
|
|
|
def get_labels(cls, gold_parses):
|
2015-03-16 15:32:23 +03:00
|
|
|
move_labels = {SHIFT: {'': True}, REDUCE: {'': True}, RIGHT: {},
|
2015-03-20 03:15:27 +03:00
|
|
|
LEFT: {}, BREAK: {'ROOT': True}}
|
2015-03-09 08:46:22 +03:00
|
|
|
for raw_text, segmented, (ids, tags, heads, labels, iob) in gold_parses:
|
|
|
|
for i, (head, label) in enumerate(zip(heads, labels)):
|
2015-03-08 08:13:20 +03:00
|
|
|
if label != 'ROOT':
|
|
|
|
if head > i:
|
2015-03-09 08:46:22 +03:00
|
|
|
move_labels[RIGHT][label] = True
|
2015-03-08 08:13:20 +03:00
|
|
|
elif head < i:
|
2015-03-09 08:46:22 +03:00
|
|
|
move_labels[LEFT][label] = True
|
|
|
|
return move_labels
|
2015-02-22 08:32:07 +03:00
|
|
|
|
2015-03-09 14:06:01 +03:00
|
|
|
cdef int preprocess_gold(self, GoldParse gold) except -1:
|
|
|
|
for i in range(gold.length):
|
|
|
|
gold.c_heads[i] = gold.heads[i]
|
2015-03-14 18:06:35 +03:00
|
|
|
gold.c_labels[i] = self.strings[gold.labels[i]]
|
2015-03-09 14:06:01 +03:00
|
|
|
|
|
|
|
cdef Transition lookup_transition(self, object name) except *:
|
|
|
|
if '-' in name:
|
|
|
|
move_str, label_str = name.split('-', 1)
|
|
|
|
label = self.label_ids[label_str]
|
|
|
|
else:
|
|
|
|
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]
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef Transition init_transition(self, int clas, int move, int label) except *:
|
2015-02-22 08:32:07 +03:00
|
|
|
# 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_funcs[move]
|
|
|
|
return t
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2015-03-10 20:00:23 +03:00
|
|
|
cdef int first_state(self, State* state) except -1:
|
|
|
|
push_stack(state)
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef Transition best_valid(self, const weight_t* scores, const State* s) except *:
|
|
|
|
cdef bint[N_MOVES] is_valid
|
|
|
|
is_valid[SHIFT] = _can_shift(s)
|
|
|
|
is_valid[REDUCE] = _can_reduce(s)
|
|
|
|
is_valid[LEFT] = _can_left(s)
|
|
|
|
is_valid[RIGHT] = _can_right(s)
|
|
|
|
is_valid[BREAK] = _can_break(s)
|
|
|
|
cdef Transition best
|
|
|
|
cdef weight_t score = MIN_SCORE
|
|
|
|
cdef int i
|
|
|
|
for i in range(self.n_moves):
|
|
|
|
if scores[i] > score and is_valid[self.c[i].move]:
|
|
|
|
best = self.c[i]
|
|
|
|
score = scores[i]
|
2015-03-08 08:13:20 +03:00
|
|
|
assert best.clas < self.n_moves
|
|
|
|
assert score > MIN_SCORE
|
2015-02-21 19:06:37 +03:00
|
|
|
# Label Shift moves with the best Right-Arc label, for non-monotonic
|
|
|
|
# actions
|
|
|
|
if best.move == SHIFT:
|
|
|
|
score = MIN_SCORE
|
|
|
|
for i in range(self.n_moves):
|
|
|
|
if self.c[i].move == RIGHT and scores[i] > score:
|
|
|
|
best.label = self.c[i].label
|
|
|
|
score = scores[i]
|
|
|
|
return best
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _do_shift(const Transition* self, State* state) except -1:
|
|
|
|
# Set the dep label, in case we need it after we reduce
|
2014-12-20 21:42:23 +03:00
|
|
|
if NON_MONOTONIC:
|
2015-03-08 08:13:20 +03:00
|
|
|
state.sent[state.i].dep = self.label
|
2015-02-21 19:06:37 +03:00
|
|
|
push_stack(state)
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _do_left(const Transition* self, State* state) except -1:
|
|
|
|
add_dep(state, state.i, state.stack[0], self.label)
|
|
|
|
pop_stack(state)
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _do_right(const Transition* self, State* state) except -1:
|
|
|
|
add_dep(state, state.stack[0], state.i, self.label)
|
|
|
|
push_stack(state)
|
|
|
|
|
|
|
|
|
|
|
|
cdef int _do_reduce(const Transition* self, State* state) except -1:
|
|
|
|
# TODO: Huh? Is this some weirdness from the non-monotonic?
|
|
|
|
add_dep(state, state.stack[-1], state.stack[0], get_s0(state).dep)
|
|
|
|
pop_stack(state)
|
2015-01-27 19:09:45 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _do_break(const Transition* self, State* state) except -1:
|
|
|
|
state.sent[state.i-1].sent_end = True
|
|
|
|
while state.stack_len != 0:
|
|
|
|
if get_s0(state).head == 0:
|
2015-03-20 03:15:27 +03:00
|
|
|
get_s0(state).dep = self.label
|
2015-02-21 19:06:37 +03:00
|
|
|
state.stack -= 1
|
|
|
|
state.stack_len -= 1
|
|
|
|
if not at_eol(state):
|
|
|
|
push_stack(state)
|
|
|
|
|
|
|
|
|
|
|
|
do_funcs[SHIFT] = _do_shift
|
|
|
|
do_funcs[REDUCE] = _do_reduce
|
|
|
|
do_funcs[LEFT] = _do_left
|
|
|
|
do_funcs[RIGHT] = _do_right
|
|
|
|
do_funcs[BREAK] = _do_break
|
|
|
|
|
|
|
|
|
|
|
|
cdef int _shift_cost(const Transition* self, const State* s, GoldParse gold) except -1:
|
2015-03-08 08:13:20 +03:00
|
|
|
if not _can_shift(s):
|
|
|
|
return 9000
|
2014-12-16 14:44:43 +03:00
|
|
|
cost = 0
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += head_in_stack(s, s.i, gold.c_heads)
|
|
|
|
cost += children_in_stack(s, s.i, gold.c_heads)
|
2014-12-20 21:42:23 +03:00
|
|
|
if NON_MONOTONIC:
|
2015-02-23 22:04:53 +03:00
|
|
|
cost += gold.c_heads[s.stack[0]] == s.i
|
2015-01-28 19:18:29 +03:00
|
|
|
# If we can break, and there's no cost to doing so, we should
|
2015-02-21 19:06:37 +03:00
|
|
|
if _can_break(s) and _break_cost(self, s, gold) == 0:
|
2015-01-28 19:18:29 +03:00
|
|
|
cost += 1
|
2014-12-16 14:44:43 +03:00
|
|
|
return cost
|
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _right_cost(const Transition* self, const State* s, GoldParse gold) except -1:
|
2015-03-08 08:13:20 +03:00
|
|
|
if not _can_right(s):
|
|
|
|
return 9000
|
2014-12-16 14:44:43 +03:00
|
|
|
cost = 0
|
2015-02-23 22:04:53 +03:00
|
|
|
if gold.c_heads[s.i] == s.stack[0]:
|
2015-02-23 02:18:54 +03:00
|
|
|
cost += self.label != gold.c_labels[s.i]
|
2014-12-16 14:44:43 +03:00
|
|
|
return cost
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += head_in_buffer(s, s.i, gold.c_heads)
|
|
|
|
cost += children_in_stack(s, s.i, gold.c_heads)
|
|
|
|
cost += head_in_stack(s, s.i, gold.c_heads)
|
2014-12-20 21:42:23 +03:00
|
|
|
if NON_MONOTONIC:
|
2015-02-23 22:04:53 +03:00
|
|
|
cost += gold.c_heads[s.stack[0]] == s.i
|
2014-12-16 14:44:43 +03:00
|
|
|
return cost
|
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _left_cost(const Transition* self, const State* s, GoldParse gold) except -1:
|
2015-03-08 08:13:20 +03:00
|
|
|
if not _can_left(s):
|
|
|
|
return 9000
|
2014-12-16 14:44:43 +03:00
|
|
|
cost = 0
|
2015-02-23 22:04:53 +03:00
|
|
|
if gold.c_heads[s.stack[0]] == s.i:
|
|
|
|
cost += self.label != gold.c_labels[s.stack[0]]
|
2014-12-16 14:44:43 +03:00
|
|
|
return cost
|
|
|
|
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += head_in_buffer(s, s.stack[0], gold.c_heads)
|
|
|
|
cost += children_in_buffer(s, s.stack[0], gold.c_heads)
|
2014-12-20 21:42:23 +03:00
|
|
|
if NON_MONOTONIC and s.stack_len >= 2:
|
2015-02-23 22:04:53 +03:00
|
|
|
cost += gold.c_heads[s.stack[0]] == s.stack[-1]
|
|
|
|
cost += gold.c_heads[s.stack[0]] == s.stack[0]
|
2014-12-16 14:44:43 +03:00
|
|
|
return cost
|
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _reduce_cost(const Transition* self, const State* s, GoldParse gold) except -1:
|
2015-03-08 08:13:20 +03:00
|
|
|
if not _can_reduce(s):
|
|
|
|
return 9000
|
2014-12-20 21:42:23 +03:00
|
|
|
cdef int cost = 0
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += children_in_buffer(s, s.stack[0], gold.c_heads)
|
2014-12-20 21:42:23 +03:00
|
|
|
if NON_MONOTONIC:
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += head_in_buffer(s, s.stack[0], gold.c_heads)
|
2014-12-20 21:42:23 +03:00
|
|
|
return cost
|
2014-12-16 14:44:43 +03:00
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef int _break_cost(const Transition* self, const State* s, GoldParse gold) except -1:
|
2015-03-08 08:13:20 +03:00
|
|
|
if not _can_break(s):
|
|
|
|
return 9000
|
2015-01-28 22:22:03 +03:00
|
|
|
# When we break, we Reduce all of the words on the stack.
|
2015-01-28 19:18:29 +03:00
|
|
|
cdef int cost = 0
|
2015-01-28 19:41:58 +03:00
|
|
|
# Number of deps between S0...Sn and N0...Nn
|
|
|
|
for i in range(s.i, s.sent_len):
|
2015-02-22 08:32:07 +03:00
|
|
|
cost += children_in_stack(s, i, gold.c_heads)
|
|
|
|
cost += head_in_stack(s, i, gold.c_heads)
|
2015-01-27 19:09:45 +03:00
|
|
|
return cost
|
|
|
|
|
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
get_cost_funcs[SHIFT] = _shift_cost
|
|
|
|
get_cost_funcs[REDUCE] = _reduce_cost
|
|
|
|
get_cost_funcs[LEFT] = _left_cost
|
|
|
|
get_cost_funcs[RIGHT] = _right_cost
|
|
|
|
get_cost_funcs[BREAK] = _break_cost
|
2014-12-16 14:44:43 +03:00
|
|
|
|
2014-12-20 21:42:23 +03:00
|
|
|
|
2015-02-21 19:06:37 +03:00
|
|
|
cdef inline bint _can_shift(const State* s) nogil:
|
|
|
|
return not at_eol(s)
|
|
|
|
|
|
|
|
|
|
|
|
cdef inline bint _can_right(const State* s) nogil:
|
|
|
|
return s.stack_len >= 1 and not at_eol(s)
|
|
|
|
|
|
|
|
|
|
|
|
cdef inline bint _can_left(const State* s) nogil:
|
|
|
|
if NON_MONOTONIC:
|
|
|
|
return s.stack_len >= 1
|
|
|
|
else:
|
|
|
|
return s.stack_len >= 1 and not has_head(get_s0(s))
|
|
|
|
|
|
|
|
|
|
|
|
cdef inline bint _can_reduce(const State* s) nogil:
|
|
|
|
if NON_MONOTONIC:
|
|
|
|
return s.stack_len >= 2
|
|
|
|
else:
|
|
|
|
return s.stack_len >= 2 and has_head(get_s0(s))
|
|
|
|
|
|
|
|
|
|
|
|
cdef inline bint _can_break(const State* s) nogil:
|
|
|
|
cdef int i
|
|
|
|
if not USE_BREAK:
|
|
|
|
return False
|
|
|
|
elif at_eol(s):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
# If stack is disconnected, cannot break
|
|
|
|
seen_headless = False
|
|
|
|
for i in range(s.stack_len):
|
|
|
|
if s.sent[s.stack[-i]].head == 0:
|
|
|
|
if seen_headless:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
seen_headless = True
|
|
|
|
return True
|