Replies: 1 comment
-
That's because there's no conversion support for one of the nodes in your onnx model. You will have to wait for someone to create a PR with support for it. Also, just for the record, the convert function only transforms an onnx model (from path or as a ModelProto) into a GraphModule class from PyTorch. You would have to export that into a .pt file yourself. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have
RT-DETRv2
model in .onnx format. I tried your code to convert to torch version. But, I got the following error:NotImplementedError: Converter is not implemented (OperationDescription(domain='', operation_type='GridSample', version=16))
I need to convert
.onnx
format to.pt
format. Does your code convert it to.pt
format?Thank you.
Regards,
Bijay
Beta Was this translation helpful? Give feedback.
All reactions