You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Layer descriptions track an isBatched boolean and if it is true take the batch size from the input data, not the layer, assuming that the batch dimension supports variable batch sizes (indicated by a None in python and a -1 in c++).
But some models may require a fixed batch size for inputs. I don't think our input code for vector layers cares as long as the right amount of data is supplied in a batch, but image inputs can't parse a fixed batch size along the first or last dimension.
The text was updated successfully, but these errors were encountered:
Layer descriptions track an
isBatched
boolean and if it is true take the batch size from the input data, not the layer, assuming that the batch dimension supports variable batch sizes (indicated by aNone
in python and a-1
in c++).But some models may require a fixed batch size for inputs. I don't think our input code for vector layers cares as long as the right amount of data is supplied in a batch, but image inputs can't parse a fixed batch size along the first or last dimension.
The text was updated successfully, but these errors were encountered: