Skip to content

Commit

Permalink
fix typo: anchor windoes should be anchor windows (apache#5706)
Browse files Browse the repository at this point in the history
  • Loading branch information
randxie authored and Trevor Morris committed Jun 18, 2020
1 parent cc3cf57 commit 1f257b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions python/tvm/relay/op/vision/rcnn.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@ def proposal(cls_prob,
[im_height, im_width, im_scale]
scales : list/tuple of float
Scales of anchor windoes.
Scales of anchor windows.
ratios : list/tuple of float
Ratios of anchor windoes.
Ratios of anchor windows.
feature_stride : int
The size of the receptive field each unit in the convolution layer of the rpn, for example
Expand Down
8 changes: 4 additions & 4 deletions topi/python/topi/cuda/rcnn/proposal.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ def predict_bbox_ir(cls_prob_buf, bbox_pred_buf, im_info_buf, out_buf, scales, r
The last dimension is in format of [w_start, h_start, w_end, h_end, score]
scales : list/tuple of float
Scales of anchor windoes.
Scales of anchor windows.
ratios : list/tuple of float
Ratios of anchor windoes.
Ratios of anchor windows.
feature_stride : int
The size of the receptive field each unit in the convolution layer of the rpn, for example
Expand Down Expand Up @@ -325,10 +325,10 @@ def proposal(cls_prob, bbox_pred, im_info, scales, ratios, feature_stride, thres
2-D with shape [batch, 3]
scales : list/tuple of float
Scales of anchor windoes.
Scales of anchor windows.
ratios : list/tuple of float
Ratios of anchor windoes.
Ratios of anchor windows.
feature_stride : int
The size of the receptive field each unit in the convolution layer of the rpn, for example
Expand Down
8 changes: 4 additions & 4 deletions topi/python/topi/vision/rcnn/proposal.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ def predict_bbox_ir(cls_prob_buf, bbox_pred_buf, im_info_buf, out_buf, scales, r
The last dimension is in format of [w_start, h_start, w_end, h_end, score]
scales : list/tuple of float
Scales of anchor windoes.
Scales of anchor windows.
ratios : list/tuple of float
Ratios of anchor windoes.
Ratios of anchor windows.
feature_stride : int
The size of the receptive field each unit in the convolution layer of the rpn, for example
Expand Down Expand Up @@ -335,10 +335,10 @@ def proposal(cls_prob, bbox_pred, im_info, scales, ratios, feature_stride, thres
2-D with shape [batch, 3]
scales : list/tuple of float
Scales of anchor windoes.
Scales of anchor windows.
ratios : list/tuple of float
Ratios of anchor windoes.
Ratios of anchor windows.
feature_stride : int
The size of the receptive field each unit in the convolution layer of the rpn, for example
Expand Down

0 comments on commit 1f257b2

Please sign in to comment.