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
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
I have a fully convolutional network with variable input shape, namely (None, None, None, 3)
After the first inference (with the shape [1,116,32,3]), when I try to provide input with different shape I got a shape validation error: Uncaught (in promise) Error: input tensor[1] check failed: expected shape '[1,116,32,3]' but got [1,205,40,3]
This error doesn't appear if all the consequent requests have the same input shape.