Closed shin7 closed 5 years ago
Yes.
the score is summation of all confidences merged during NMS, see: https://github.com/MichalBusta/E2E-MLT/blob/61df47f3aa5f3ce54633bb28e3c828d7d59afd68/nms/adaptor.cpp#L24
if you want average value, you have to change code to: p.score / p.nr_polys
(but does not reflect anything - we are learning pixel probability with dice loss and for text detection for fully trained network, values are almost always 0 and 1 )
Thank you!
Thank for your great work!
for bid, box in enumerate(detections):
Is the
score
variable here, in eval.py, refer to a confidence value? Thank you!