I have downloaded your code, and customized for my task little bit.
I am using a custom dataset iterator, which does not necessarily include masking annotation. But all the samples in the iterator includes object detection annotations.
In case the batches include only object detection annotation, I don't want to update segmentation layers.
We have the following parameters to back propagate through.
From the parameters above, I do not update protocol_net., maskiou_net., prediction_layers.upfeature, and semantic_seg_conv. layers, when I would like to train only object detection layers.
However, I am not sure with the prediction_layers.upfeature* parameters. Should I also update them?
Hi,
I have downloaded your code, and customized for my task little bit.
I am using a custom dataset iterator, which does not necessarily include masking annotation. But all the samples in the iterator includes object detection annotations.
In case the batches include only object detection annotation, I don't want to update segmentation layers.
We have the following parameters to back propagate through.
backbone. proto_net. maskiou_net. fpn. prediction_layers.upfeature prediction_layers.0.bbox_layer. prediction_layers.0.conf_layer. prediction_layers.0.mask_layer. semantic_seg_conv.*
From the parameters above, I do not update protocol_net., maskiou_net., prediction_layers.upfeature, and semantic_seg_conv. layers, when I would like to train only object detection layers.
However, I am not sure with the prediction_layers.upfeature* parameters. Should I also update them?