We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have an onnx model that was exported form pytorch with opset_version=14. Now I try to convert it to tensorflow like this
import onnx from onnx_tf.backend import prepare onnx_model = onnx.load("my_model.onnx") tf_rep = prepare(onnx_model) tf_rep.export_graph('./tf_export/my_model')
but it produces the error message
... raise BackendIsNotSupposedToImplementIt("{} is not implemented.".format( BackendIsNotSupposedToImplementIt: FusedMatMul is not implemented.
So it tells me that the operation com.microsoft::FusedMatMul is not supported by onnx-tf, right?
What can I do from here? Are non oft the com.microsoft operators implemented?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have an onnx model that was exported form pytorch with opset_version=14. Now I try to convert it to tensorflow like this
but it produces the error message
So it tells me that the operation com.microsoft::FusedMatMul is not supported by onnx-tf, right?
What can I do from here? Are non oft the com.microsoft operators implemented?
The text was updated successfully, but these errors were encountered: