LevinJ / SSD_tensorflow_VOC

Apache License 2.0
60 stars 31 forks source link

How to get average precision for each class? #3

Open cravisjan97 opened 7 years ago

cravisjan97 commented 7 years ago

I have got the mean average precision for the whole dataset. But I would also like to know the average precision of each of the twenty classes. How do I get this?

LevinJ commented 7 years ago

Hi @cravisjan97 , for now the evaluate_model.py script only output mAP for all classes in the terminal. You can check the AP for each class via tensorboard.

https://www.tensorflow.org/get_started/summaries_and_tensorboard

cravisjan97 commented 7 years ago

Thanks!!!