mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-11 00:32:40 +03:00
* Whitespace
This commit is contained in:
parent
b27bd18d6e
commit
76a1f0481a
|
@ -322,8 +322,9 @@ cdef class ArcEager(TransitionSystem):
|
|||
cdef Transition lookup_transition(self, object name) except *:
|
||||
if '-' in name:
|
||||
move_str, label_str = name.split('-', 1)
|
||||
label = self.label_ids[label_str]
|
||||
label = self.strings[label_str]
|
||||
else:
|
||||
move_str = name
|
||||
label = 0
|
||||
move = MOVE_NAMES.index(move_str)
|
||||
for i in range(self.n_moves):
|
||||
|
|
Loading…
Reference in New Issue
Block a user