You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by GitBox <gi...@apache.org> on 2019/06/03 07:35:46 UTC

[GitHub] [incubator-mxnet] William-jia opened a new issue #15134: mxnet doc error

William-jia opened a new issue #15134: mxnet doc error
URL: https://github.com/apache/incubator-mxnet/issues/15134
 
 
   https://mxnet.incubator.apache.org/api/python/ndarray/contrib.html?highlight=multiproposal#mxnet.ndarray.contrib.MultiProposal
   
   cls_prob (NDArray) – Score of how likely proposal is object.
   bbox_pred (NDArray) – BBox Predicted deltas from anchors for proposals
   im_info (NDArray) – Image size and scale.
   **rpn_pre_nms_top_n (int, optional, default='6000') – Number of top scoring boxes to keep after applying NMS to RPN proposals
   rpn_post_nms_top_n (int, optional, default='300') – Overlap threshold used for non-maximumsuppresion(suppress boxes with IoU >= this threshold
   threshold (float, optional, default=0.699999988) – NMS value, below which to suppress.**
   
   i think the right answer is :
   
   rpn_pre_nms_top_n (int, optional, default='6000') – Number of top scoring boxes to keep **before** applying NMS to RPN proposals
   rpn_post_nms_top_n (int, optional, default='300') –  Number of top scoring boxes to keep **after** applying NMS to RPN proposals
   threshold (float, optional, default=0.699999988) – Overlap threshold used for non-maximumsuppresion(suppress boxes with IoU >= this threshold NMS value, below which to suppress.
   
   
   
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services