1 | initial version |
@vealocia did you verify the model:
import onnx
onnx_model = onnx.load( 'model.onnx')
onnx.checker.check_model(onnx_model)
I recently had some similar issues when the Nodes in the ONNX graph are not topologically sorted.
2 | No.2 Revision |
@vealocia did you verify the model:
model:
import onnx onnx_model = onnx.load( 'model.onnx') onnx.checker.check_model(onnx_model)
I recently had some similar issues issue when the Nodes in the ONNX graph are not topologically sorted.