see icon indicating copy to clipboard operation
see copied to clipboard

Prediction Score

Open woo1 opened this issue 6 years ago • 1 comments

I can get predictions, crops, grids data if I predict image. It looks like we can not get any scores. Is it possible to get predicted box score or predicted character score?

woo1 avatar Apr 11 '19 05:04 woo1

You can not get any scores for the predicted boxes, at least not with the current implementation (you'd need to add some extra classifiers and think of a way to model a confidence score without knowledge about groundtruth box locations) You can, however, get scores for the characters. Since we are using a softmax classifier at the end, you should be able to extract the maximum value and use this as a confidence score.

Bartzi avatar Apr 11 '19 08:04 Bartzi