Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Docs fixes (NDabs, Proposal, MultiProposal) #15185

Merged
merged 2 commits into from
Jun 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/api/python/optimization/optimization.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,11 @@ for examples.
```eval_rst
.. automodule:: mxnet.optimizer
:members:
:exclude-members: NDabs

.. automodule:: mxnet.lr_scheduler
:members:

.. automodule:: mxnet.initializer
:members:
```
Expand Down
5 changes: 2 additions & 3 deletions src/operator/contrib/multi_proposal-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,9 @@ struct MultiProposalParam : public dmlc::Parameter<MultiProposalParam> {
DMLC_DECLARE_PARAMETER(MultiProposalParam) {
float tmp[] = {0, 0, 0, 0};
DMLC_DECLARE_FIELD(rpn_pre_nms_top_n).set_default(6000)
.describe("Number of top scoring boxes to keep after applying NMS to RPN proposals");
.describe("Number of top scoring boxes to keep before applying NMS to RPN proposals");
DMLC_DECLARE_FIELD(rpn_post_nms_top_n).set_default(300)
.describe("Overlap threshold used for non-maximum"
"suppresion(suppress boxes with IoU >= this threshold");
.describe("Number of top scoring boxes to keep after applying NMS to RPN proposals");
DMLC_DECLARE_FIELD(threshold).set_default(0.7)
.describe("NMS value, below which to suppress.");
DMLC_DECLARE_FIELD(rpn_min_size).set_default(16)
Expand Down
5 changes: 2 additions & 3 deletions src/operator/contrib/proposal-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ struct ProposalParam : public dmlc::Parameter<ProposalParam> {
DMLC_DECLARE_PARAMETER(ProposalParam) {
float tmp[] = {0, 0, 0, 0};
DMLC_DECLARE_FIELD(rpn_pre_nms_top_n).set_default(6000)
.describe("Number of top scoring boxes to keep after applying NMS to RPN proposals");
.describe("Number of top scoring boxes to keep before applying NMS to RPN proposals");
DMLC_DECLARE_FIELD(rpn_post_nms_top_n).set_default(300)
.describe("Overlap threshold used for non-maximum"
"suppresion(suppress boxes with IoU >= this threshold");
.describe("Number of top scoring boxes to keep after applying NMS to RPN proposals");
DMLC_DECLARE_FIELD(threshold).set_default(0.7)
.describe("NMS value, below which to suppress.");
DMLC_DECLARE_FIELD(rpn_min_size).set_default(16)
Expand Down