Open baynaa7 opened 6 years ago
Same here. Can't run it. I've posted it here.
My error msg is different, though.
What's interesting is that in a desperate attempt, I downloaded resnet-50 quantized and run the same script. I got another different error msg, a bit similar to what @pcub showed above.
I've tried both on TX2 and Rasp pi, btw. Same error msg. Hoping someone can give some pointers.
I think the reason is that workspace.CreateNet requires all blobs existed at the time of creating the network, but the input blob "data" was not existed at that time. One solution is to call workspace.CreateBlob("data") before calling createNet.
idea that @newstzpz mentioned was solved the problem
@pcub So I'm guessing I shouldn't have followed the tutorial, since your way seems different than mine and works now. Is it possible to show me some code snippet to see how it's done? I have zero Caffe2 experience, so I'd really appreciate that.
I am trying to run mobilenet_v2_quantized on pytorch/caffe2 repo which supports int8 .
after compiling pytorch on tx2 and run the model, I meet the following error:
what is the problem?