There maybe a bug in file roi_align.cc. # Line 177 and Line 178 T roi_width = std::max(roi_end_w - roi_start_w, (T)1.); T roi_height = std::max(roi_end_h - roi_start_h, (T)1.);
I think it should be: T roi_width = std::max(roi_end_w - roi_start_w + 1, (T)1.); T roi_height = std::max(roi_end_h - roi_start_h + 1, (T)1.); [ Full content available at: https://github.com/apache/incubator-mxnet/issues/12403 ] This message was relayed via gitbox.apache.org for [email protected]
