mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 01:16:28 +03:00
* Assign root words the ROOT label via the Break transition. Something is still wrong here...
This commit is contained in:
parent
52429625f0
commit
9f4ad8fdfb
|
@ -43,7 +43,7 @@ cdef class ArcEager(TransitionSystem):
|
|||
@classmethod
|
||||
def get_labels(cls, gold_parses):
|
||||
move_labels = {SHIFT: {'': True}, REDUCE: {'': True}, RIGHT: {},
|
||||
LEFT: {}, BREAK: {'': True}}
|
||||
LEFT: {}, BREAK: {'ROOT': True}}
|
||||
for raw_text, segmented, (ids, tags, heads, labels, iob) in gold_parses:
|
||||
for i, (head, label) in enumerate(zip(heads, labels)):
|
||||
if label != 'ROOT':
|
||||
|
@ -138,7 +138,7 @@ 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:
|
||||
get_s0(state).dep = 0
|
||||
get_s0(state).dep = self.label
|
||||
state.stack -= 1
|
||||
state.stack_len -= 1
|
||||
if not at_eol(state):
|
||||
|
|
Loading…
Reference in New Issue
Block a user