tutorials icon indicating copy to clipboard operation
tutorials copied to clipboard

RUN caffe2.python.onnx.frontend.caffe2_net_to_onnx_model() is Segmentation fault!!

Open Yvette1993 opened this issue 6 years ago • 0 comments

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.

Yvette1993 avatar Dec 04 '19 03:12 Yvette1993