zheshipinyinMc edited a comment on issue #15207: Mack-RCNN C++ Deployment Not 
Working in GPU Mode And CPU Mode
URL: 
https://github.com/apache/incubator-mxnet/issues/15207#issuecomment-501651952
 
 
   @zhreshold 
   auto ids = exec->outputs[0].Copy(Context(kCPU, 0));
    auto scores = exec->outputs[1].Copy(Context(kCPU, 0));
   auto bboxes = exec->outputs[2].Copy(Context(kCPU, 0));
   if (exec->outputs.size() > 3) {
          auto masks = exec->outputs[3].Copy(Context(kCPU, 0));
   }
   
   the scores is 1x1x1000 , we can get score by scores.At(0,0, i)
   the bboxes is 1x1000x4, we can get box by bboxes.At(0,i, 0),bboxes.At(0,i, 
1), bboxes.At(0,i, 2), bboxes.At(0,i, 3)
   the masks is 1x1000x14x14, how to get the value of mask? there is no 
NDArray::At(input1,input2,input3,input4).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to