FastMaskRCNN icon indicating copy to clipboard operation
FastMaskRCNN copied to clipboard

Mask RCNN in TensorFlow

Results 100 FastMaskRCNN issues
Sort by recently updated
recently updated
newest added

Hi all, I found that mask-rcnn has been released and upload to github. Prehasp, we can fix the known issues because of this code. https://github.com/TuSimple/mx-maskrcnn

restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv1/BatchNorm/gamma:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv1/BatchNorm/beta:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv1/BatchNorm/moving_mean:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv1/BatchNorm/moving_variance:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv2/weights:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv2/BatchNorm/gamma:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv2/BatchNorm/beta:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv2/BatchNorm/moving_mean:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv2/BatchNorm/moving_variance:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv3/weights:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv3/BatchNorm/gamma:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv3/BatchNorm/beta:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv3/BatchNorm/moving_mean:0 restoring resnet_v1_50/block4/unit_3/bottleneck_v1/conv3/BatchNorm/moving_variance:0 restoring resnet_v1_50/logits/weights:0...

Is it possible to train coco dataset for keypoint detection? Has someone experience on it? Thank you.

I cloned your repo, and started to run how you describe in instructions. Whenever I run make command in pycocotools directory an error had been rised. That: python setup.py build_ext...

Hello, does anyone know how to test the trained model?

Fixed "Input to reshape is a tensor with 1 values, but the requested shape has 0" bug. Small changes: Python 3 compartible. Fixed tab/space mix in sample.py p.s. If you...

I have trained the model for 500000 iterations and finally gained the ckpt file, but I have no idea on testing it. Has anyone finished testing the model?

ResourceExhaustedError (see above for traceback): OOM when allocating tensor with shape[1,256,160,551] [[Node: pyramid_1/P2/rpn/convolution = Conv2D[T=DT_FLOAT, data_format="NHWC", padding="SAME", strides=[1, 1, 1, 1], use_cudnn_on_gpu=true, _device="/job:localhost/replica:0/task:0/gpu:0"](pyramid/C2/fusion/BiasAdd, pyramid/P2/rpn/weights/read)]] [[Node: pyramid_1/AssignGTBoxes/Equal_5/_1175 = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/cpu:0", send_device="/job:localhost/replica:0/task:0/gpu:0",...

I tried prediction with the trained model, however it seems the output are strongly biased towards the first non-background class (person): ![0454750_dets](https://user-images.githubusercontent.com/4241989/27583294-78e6263e-5b66-11e7-83b8-9683edeb85d1.png) ![0455085_dets](https://user-images.githubusercontent.com/4241989/27583317-87541a50-5b66-11e7-886f-1af0ad30f6f2.png) ![0459500_dets](https://user-images.githubusercontent.com/4241989/27583337-9b2cdc10-5b66-11e7-88d4-6f361deed4d2.png) The above predictions are obtained from...