Hi, thanks for the great work.
I found that DeDoDe calculates the Softmax confidence over the entire image and the max resulting confidence is very low, e.g. 0.00095387973 in my test.
|
keypoint_p = keypoint_logits.reshape(B, K*H*W).softmax(dim=-1).reshape(B, K, H*W).sum(dim=1) |
So how can I set an absolute confidence threshold (for example: 0.1) to filter out non salient area?
Hi, thanks for the great work.
I found that DeDoDe calculates the Softmax confidence over the entire image and the max resulting confidence is very low, e.g.
0.00095387973in my test.DeDoDe/DeDoDe/detectors/dedode_detector.py
Line 47 in 0928deb
So how can I set an absolute confidence threshold (for example:
0.1) to filter out non salient area?