mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 18:06:29 +03:00
any instead of all
This commit is contained in:
parent
26bf642afd
commit
a52d466bfc
|
@ -291,7 +291,7 @@ def forward(model: Tok2VecListener, inputs, is_train: bool):
|
||||||
# of data.
|
# of data.
|
||||||
# When the components batch differently, we don't receive a matching
|
# When the components batch differently, we don't receive a matching
|
||||||
# prediction from the upstream, so we can't predict.
|
# prediction from the upstream, so we can't predict.
|
||||||
if not all(doc.tensor.size for doc in inputs):
|
if not any(doc.tensor.size for doc in inputs):
|
||||||
# But we do need to do *something* if the tensor hasn't been set.
|
# But we do need to do *something* if the tensor hasn't been set.
|
||||||
# The compromise is to at least return data of the right shape,
|
# The compromise is to at least return data of the right shape,
|
||||||
# so the output is valid.
|
# so the output is valid.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user