-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Confidence threshold #3528
Comments
Never mind.Already solved : ) |
@0ttwhy4 Hello, how do you get the confidence of the segmentation results to filter out some predictions that do not meet the conditions. |
Assume there are 2 classes, the following can save the probabilities of each class and the classification result in csv files (you can also directly use the intermediate variables to do other things): save the probabilities of the first classnp.savetxt('logits0.csv', result.seg_logits.data[0].to('cpu').numpy(), delimiter=',') save the probabilities of the second classnp.savetxt('logits1.csv', result.seg_logits.data[1].to('cpu').numpy(), delimiter=',') save the class numbernp.savetxt('pred.csv', result.pred_sem_seg.data[0].to('cpu').numpy(), delimiter=',') |
@changwsh12 Ok, got it. Thank you for your answer |
I am trying to use pretrained models in mmseg to obtain a certain class of objects in images,which will serve as ground truth in my own model'training,and thus I want the result to be as accurate as possible by screening out pixels with low confidence.So how should I do it?:|
The text was updated successfully, but these errors were encountered: