error in converting onnx models to tensorflow
See original GitHub issueI tried onnx-tf
on the models in the models folder but got the error BackendIsNotSupposedToImplementIt: FusedConv is not implemented.
Any ideas how this can be fixed? Thanks.
Issue Analytics
- State:
- Created a year ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Issues · onnx/onnx-tensorflow - GitHub
Export tensorflow lite model don't use onnx model input names and output names ... Error converting ONNX to TF file: Cannot take the...
Read more >Why does this conversion of an onnx model to tensorflow ...
I am working on converting an existing Pytorch model into a tf-lite model to see if it can speed up inference time and...
Read more >KeyError: 'Resize' Error in converting from ONNX model to keras
I am trying to convert an ONNX model to a Keras model using onnx2keras, so that I can implement this: ...
Read more >ONNX to TF-Lite Model Conversion
This tutorial describes how to convert an ONNX formatted model file into a format that can execute on an embedded device using Tensorflow-Lite...
Read more >I am trying to convert the ONNX SSD mobilnet v3 model into ...
I converted the tf ssd mobilnet v3 frozen graph into onnx model on jetson xavier. ... ERROR: failed to build the TensorRT engine!...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Btw, using the model file in the zip of #48, this converts from ONNX to TF:
onnx-tf convert -i lm_model1.onnx -o lm_model1.pb
This converts from TF to tflite:
I believe the names are “input” and “output”, but if you load the model with onnxruntime, you should also be able to query them.