SSD-Centerloss
SSD-Centerloss copied to clipboard
conf_center_pred_.count() and bottom[4]->count
I want use the loss on https://github.com/zeusees/FaceBoxes/blob/master/examples/faceboxes/train.prototxt I concat conv2_3/incep , conv3_2 , conv4_2 as "mbox_center_conf" center_features: 23 but, the error is: multibox_center_loss_layer.cpp:299] Check failed: conf_center_pred_.count() == bottom[4]->count() (16062464 vs. 2818048)
@yja1 mbox_center_conf is the concatenation of all the center_features in all default box. And your center_features are set to 23. Therefore, the convolution output number should be 23 * anchors_numbers.
do you solve this problem?I met the same question F0313 15:18:39.773320 12706 multibox_center_loss_layer.cpp:299] Check failed: conf_center_pred_.count() == bottom[4]->count() (377856 vs. 333824) I couldn't understand the connection among num_output,center_feature and min_size,could you give me some advice about what I can do?Thank you!
Thank you for your help .I check out my anchors_numbers and other param,now it can run.Thank you very much.