This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Description
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.
The workaround for now is to reload the model.