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

Hello, How can the FCN responsible for predicting masks deal with the different dimensions of the ROI? it seems the output of masking ROI is 14*14*number of classes How can...

when I try to run download_and_convert_data.py , then Traceback (most recent call last): File "download_and_convert_data.py", line 41, in tf.app.run() File "/usr/local/lib/python2.7/dist-packages/tensorflow/python/platform/app.py", line 48, in run _sys.exit(main(_sys.argv[:1] + flags_passthrough)) File "download_and_convert_data.py",...

Hi everyone, I try to run make under ./libs, but it did not work. error: command 'x86_64-linux-gnu-gcc' failed with exit status 1 Does someone have the same problem?

when i run python train.py, I got this error tensorflow/core/framework/op_kernel.cc:993] Internal: Failed to allocate np array: [37,640,853] how do i fix it?

``` astromme@Snowbank:~/Code/FastMaskRCNN$ python train/train.py P2 P3 P4 P5 anchor_scales = [8, 16, 32] anchor_scales = [4, 8, 16] anchor_scales = [2, 4, 8] anchor_scales = [1, 2, 4] 5 4...

I always got below error when I ran python train/train.py Traceback (most recent call last): File "train/train.py", line 21, in import libs.nets.pyramid_network as pyramid_network File "train/../libs/nets/pyramid_network.py", line 9, in from...

Hi, all, Would someone start using another framework such as caffe2 to re-implement Mask RCNN? As the original implementation used caffe2, according to [this](https://news.ycombinator.com/item?id=14144394)

![2017-06-01 10-26-49](https://cloud.githubusercontent.com/assets/13596969/26662669/265a6adc-46b8-11e7-8b4e-f7692c9a072e.png) what should I do to make this program right?

When i run train.py, i get an error ERROR:tensorflow: Object was never used (type ): If you want to mark it as used call its "mark_used()" method. It was originally...

I am trying to modify the current code to make it run on multi-gpu based on the tensorflow [cifar10](https://github.com/tensorflow/models/blob/master/tutorials/image/cifar10/cifar10_multi_gpu_train.py) multi-gpu implementation. it seems to be simple from cifar10 example, but...