I downloaded a model from tensorflow hub, and then tried to convert it into onnx using tf2onnx (https://github.com/onnx/tensorflow-onnx).
However the model does not seem to work properly after conversion.
When I look at the onnx file that is generated using Netron, the input layer has dimensions float32[unk__4256,unk__4257,unk__4258,3]. I believe this is due to the dynamic dimensions of the input model. However, as far as I know, this should not necessarily be an issue.
Is there any way to override the dynamic shape of the model and force it to have a particular one during conversion?
I looked around and saw that other people had similar unknown input/output layers with other models, but it seemed to work anyway.
Thanks in advance for your help!