Switch back to greedy parser

This commit is contained in:
Matthew Honnibal 2017-03-11 11:11:30 -06:00
parent a155482fda
commit f77a5bb60a
2 changed files with 2 additions and 2 deletions

View File

@ -9,5 +9,5 @@ cdef class EntityRecognizer(BeamParser):
pass
cdef class DependencyParser(BeamParser):
cdef class DependencyParser(Parser):
pass

View File

@ -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')