panyuetj

Results 8 comments of panyuetj

Thank you very much. I will wait for your updating.

@solin319 new problem: ``` File "maskrcnn_train_end2end.py", line 203, in main() File "maskrcnn_train_end2end.py", line 200, in main lr=args.lr, lr_step=args.lr_step) File "maskrcnn_train_end2end.py", line 162, in train_net arg_params=arg_params, aux_params=aux_params, begin_epoch=begin_epoch, num_epoch=end_epoch) File "/home/pp/code/maskrcnn.mxnet/rcnn/core/module.py",...

@solin319 Thanks! I got another error: ``` File “/home/pp/training_scripts/maskrcnn.mxnet/rcnn/io/rpn.py”, line 149, in assign_anchor gt_argmax_overlaps = overlaps.argmax(axis=0) ValueError: attempt to get argmax of an empty sequence ``` It sames like that...

@solin319 In the file rcnn/io/rpn.py ``` # only keep anchors inside the image inds_inside = np.where((all_anchors[:, 0] >= -allowed_border) & (all_anchors[:, 1] >= -allowed_border) & (all_anchors[:, 2] < im_info[1] +...

I have the same problem

You need to move the files in operator_cxx to mxnet/src/operator/, and modify some path problems, then remake the mxnet.

How to understand the "block" in the deeplab_v3? Is it as same as the res_unit or stage in resnet?