tutorials
tutorials copied to clipboard
RUN caffe2.python.onnx.frontend.caffe2_net_to_onnx_model() is Segmentation fault!!
Hi guys When I running the code: from caffe2.python.models.download import ModelDownloader mf = ModelDownloader() class Model: def init(self, model_name): self.init_net, self.predict_net, self.value_info = mf.get_c2_model(model_name) model = Model('resnet50') onnx_model = caffe2.python.onnx.frontend.caffe2_net_to_onnx_model(model.predict_net,model.init_net,model.value_info)
I meet this problem: Segmentation fault ( core dumped). How to deal it? I need your help.