gigasquid closed pull request #13261: Fix Sphinx errors in box_nms
URL: https://github.com/apache/incubator-mxnet/pull/13261
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/operator/contrib/bounding_box.cc 
b/src/operator/contrib/bounding_box.cc
index 53052ad5a25..56925f94de5 100644
--- a/src/operator/contrib/bounding_box.cc
+++ b/src/operator/contrib/bounding_box.cc
@@ -47,22 +47,29 @@ the in_grad will be assigned 0.
 In summary, gradients are sticked to its boxes, will either be moved or 
discarded
 according to its original index in input.
 
-Input requirements:
-1. Input tensor have at least 2 dimensions, (n, k), any higher dims will be 
regarded
-as batch, e.g. (a, b, c, d, n, k) == (a*b*c*d, n, k)
-2. n is the number of boxes in each batch
-3. k is the width of each box item.
+Input requirements::
+
+  1. Input tensor have at least 2 dimensions, (n, k), any higher dims will be 
regarded
+  as batch, e.g. (a, b, c, d, n, k) == (a*b*c*d, n, k)
+  2. n is the number of boxes in each batch
+  3. k is the width of each box item.
 
 By default, a box is [id, score, xmin, ymin, xmax, ymax, ...],
 additional elements are allowed.
+
 - `id_index`: optional, use -1 to ignore, useful if `force_suppress=False`, 
which means
-we will skip highly overlapped boxes if one is `apple` while the other is 
`car`.
+  we will skip highly overlapped boxes if one is `apple` while the other is 
`car`.
+
 - `coord_start`: required, default=2, the starting index of the 4 coordinates.
-Two formats are supported:
-  `corner`: [xmin, ymin, xmax, ymax]
-  `center`: [x, y, width, height]
+  Two formats are supported:
+
+    - `corner`: [xmin, ymin, xmax, ymax]
+
+    - `center`: [x, y, width, height]
+
 - `score_index`: required, default=1, box score/confidence.
-When two boxes overlap IOU > `overlap_thresh`, the one with smaller score will 
be suppressed.
+  When two boxes overlap IOU > `overlap_thresh`, the one with smaller score 
will be suppressed.
+
 - `in_format` and `out_format`: default='corner', specify in/out box formats.
 
 Examples::


 

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


With regards,
Apache Git Services

Reply via email to