Open emergencyd opened 5 years ago
What if their prediction class is different? Like stage1 predict the box as cat, while stage2 predict the box as dog. Thank you
We multiply the softmax score elementwise, which is a 21-D vector for pascal voc and 81-D vector for coco. For example, stage 1 predict [0.9, 0.1] and stage 2 predict [0.2, 0.8], the final score is [0.18, 0.08].
What if their prediction class is different? Like stage1 predict the box as cat, while stage2 predict the box as dog. Thank you