mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 18:56:36 +03:00
Fix bug introduced by component_cfg
This commit is contained in:
parent
70e5058d72
commit
8a4121cbc2
|
@ -900,6 +900,11 @@ class DisabledPipes(list):
|
||||||
|
|
||||||
|
|
||||||
def _pipe(func, docs, kwargs):
|
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:
|
for doc in docs:
|
||||||
doc = func(doc, **kwargs)
|
doc = func(doc, **kwargs)
|
||||||
yield doc
|
yield doc
|
||||||
|
|
Loading…
Reference in New Issue
Block a user