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
ValueError: cannot copy sequence with size 2 to array axis with dimension 10
This is because with processes we generate a number of instances equal to the minibatch_size. But then when we call predict with a batch size of 10 (for the first node) but no inputs for the second node, we need to autogenerate data with a batch size of 10 for the second node (even though we only have 2 instances).
The text was updated successfully, but these errors were encountered:
Gives error
This is because with processes we generate a number of instances equal to the
minibatch_size
. But then when we callpredict
with a batch size of 10 (for the first node) but no inputs for the second node, we need to autogenerate data with a batch size of 10 for the second node (even though we only have 2 instances).The text was updated successfully, but these errors were encountered: