any instead of all

This commit is contained in:
svlandeg 2021-02-11 20:50:55 +01:00
parent 26bf642afd
commit a52d466bfc

View File

@ -291,7 +291,7 @@ def forward(model: Tok2VecListener, inputs, is_train: bool):
# of data.
# When the components batch differently, we don't receive a matching
# 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.
# The compromise is to at least return data of the right shape,
# so the output is valid.