MichaelLv

Results 2 issues of MichaelLv

There is a bug in train_maskrcnn.py. # Line 74, in filter_roidb function valid = len(fg_inds) > 0 and len(bg_inds) > 0 should be: valid = len(fg_inds) > 0 or len(bg_inds)...

I find that there maybe a bug in the ROIAlign operator. For example, x = mx.nd.array([[[[ 0., 1., 2., 3., 4., 5.], [ 6., 7., 8., 9., 10., 11.], [...