fix(typo): Fixes typo in method calling PseudoProjectivity.deprojectivize, failing with new train cli

This commit is contained in:
oeg 2017-04-06 17:33:15 +02:00
parent 808cd6cf7f
commit 010293fb2f

View File

@ -144,7 +144,7 @@ class BaseDefaults(object):
pipeline.append(nlp.tagger) pipeline.append(nlp.tagger)
if nlp.parser: if nlp.parser:
pipeline.append(nlp.parser) pipeline.append(nlp.parser)
pipeline.append(Pseudoprojectivity.deprojectivize) pipeline.append(PseudoProjectivity.deprojectivize)
if nlp.entity: if nlp.entity:
pipeline.append(nlp.entity) pipeline.append(nlp.entity)
return pipeline return pipeline