You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
I don't recommend doing that. The filtering is done by topk. If you want to set a threshold, perhaps you can set it based on the max over the image, e.g.., t= 0.01 * maxprob
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.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?The text was updated successfully, but these errors were encountered: