Caffe: why prior_box_layer has no backpropagation implementation?

Created on 6 Jul 2016  路  2Comments  路  Source: weiliu89/caffe

I don't quite understand how prior_box_layer performs backpropagation if it is not implemented

Most helpful comment

prior_box_layer is only used to generate prior (default) bbox, which is fixed. The location prediction (e.g. *_mbox_loc) is the real prediction (offset on top of prior box), which is backpropagated during training.

All 2 comments

prior_box_layer is only used to generate prior (default) bbox, which is fixed. The location prediction (e.g. *_mbox_loc) is the real prediction (offset on top of prior box), which is backpropagated during training.

I see. In DetectionOutput layer, the fixed prior bbox is required in the loss caculation between predicted bbox and ground truth bbox.

Was this page helpful?
0 / 5 - 0 ratings