mirror of https://github.com/explosion/spaCy.git
Switch back to greedy parser
This commit is contained in:
parent
a155482fda
commit
f77a5bb60a
|
@ -9,5 +9,5 @@ cdef class EntityRecognizer(BeamParser):
|
|||
pass
|
||||
|
||||
|
||||
cdef class DependencyParser(BeamParser):
|
||||
cdef class DependencyParser(Parser):
|
||||
pass
|
||||
|
|
|
@ -29,7 +29,7 @@ cdef class EntityRecognizer(BeamParser):
|
|||
self.vocab._serializer = None
|
||||
|
||||
|
||||
cdef class DependencyParser(BeamParser):
|
||||
cdef class DependencyParser(Parser):
|
||||
TransitionSystem = ArcEager
|
||||
|
||||
feature_templates = get_feature_templates('basic')
|
||||
|
|
Loading…
Reference in New Issue