CherryLiu8023
CherryLiu8023
This is the core error when running some onnx related libs api in python3.11 env. **What version of protobuf and what language are you using?** 4.25.0 with some local patches...
when running in python with code below `class ONNXSimplifierTests(unittest.TestCase): def test_onnx_simplifier(self): onnx_model_path = self._create_dummy_model() onnx_model = onnx.load(onnx_model_path) import pdb pdb.set_trace() simple_model, _ = onnxsim.simplify(onnx_model, perform_optimization=False, skip_shape_inference=True) self.assertIsNotNone(simple_model) def _create_dummy_model(self): class...