未验证 提交 47013af0 编写于 作者: J jerrywgz 提交者: GitHub

Merge pull request #17011 from jerrywgz/enhance_generate_proposal_labels

enhance generate proposal labels, test=develop
......@@ -394,6 +394,10 @@ class GenerateProposalLabelsKernel : public framework::OpKernel<T> {
auto is_crowd_lod = is_crowd->lod().back();
auto gt_boxes_lod = gt_boxes->lod().back();
for (int i = 0; i < n; ++i) {
if (rpn_rois_lod[i] == rpn_rois_lod[i + 1]) {
lod0.emplace_back(num_rois);
continue;
}
Tensor rpn_rois_slice =
rpn_rois->Slice(rpn_rois_lod[i], rpn_rois_lod[i + 1]);
Tensor gt_classes_slice =
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册