ganler commented on issue #11783: URL: https://github.com/apache/tvm/issues/11783#issuecomment-1164960100
@TaylorHere Thanks for sharing the model. However, this model itself is invalid that cannot pass onnx full check: ```python import onnx onnx_model = onnx.load(args.model) onnx.checker.check_model(onnx_model, full_check=True) ``` So the model iteself is invalid as its input `0` has no type information. Since you exported the model from PyTorch, I suggest you open an issue there to see what's going on. In the meantime, you might want to export the model with PyTorch nightly as they are continuously making updates for better supporting ONNX. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
