mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
fix(typo): Fixes typo in method calling PseudoProjectivity.deprojectivize, failing with new train cli
This commit is contained in:
parent
808cd6cf7f
commit
010293fb2f
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user