Commit bf6f685c authored by Georgia Gkioxari's avatar Georgia Gkioxari Committed by Facebook Github Bot

Fix for when USE_FC_OUTPUT is True

Reviewed By: rbgirshick

Differential Revision: D9818825

fbshipit-source-id: a1f2182a7760568987100aa7402aca9327dee952
parent 3a38b7bc
...@@ -51,10 +51,11 @@ def add_mask_rcnn_outputs(model, blob_in, dim): ...@@ -51,10 +51,11 @@ def add_mask_rcnn_outputs(model, blob_in, dim):
if cfg.MRCNN.USE_FC_OUTPUT: if cfg.MRCNN.USE_FC_OUTPUT:
# Predict masks with a fully connected layer (ignore 'fcn' in the blob # Predict masks with a fully connected layer (ignore 'fcn' in the blob
# name) # name)
dim_fc = int(dim * (cfg.MRCNN.RESOLUTION / cfg.MRCNN.UPSAMPLE_RATIO)**2)
blob_out = model.FC( blob_out = model.FC(
blob_in, blob_in,
'mask_fcn_logits', 'mask_fcn_logits',
dim, dim_fc,
num_cls * cfg.MRCNN.RESOLUTION**2, num_cls * cfg.MRCNN.RESOLUTION**2,
weight_init=gauss_fill(0.001), weight_init=gauss_fill(0.001),
bias_init=const_fill(0.0) bias_init=const_fill(0.0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment