Merge branch 'develop' of https://github.com/explosion/spaCy into develop

This commit is contained in:
Ines Montani 2019-03-12 15:11:39 +01:00
commit 8ee6514ab8
1 changed files with 5 additions and 0 deletions

View File

@ -900,6 +900,11 @@ class DisabledPipes(list):
def _pipe(func, docs, kwargs):
# We added some args for pipe that __call__ doesn't expect.
kwargs = dict(kwargs)
for arg in ["n_threads", "batch_size"]:
if arg in kwargs:
kwargs.pop(arg)
for doc in docs:
doc = func(doc, **kwargs)
yield doc