Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show per category metrics in Tensorboard

I am training an object detection model using tensorflow object detection api. The eval config is like this:

eval_config: {
  num_examples: 8000
  max_evals: 10
  num_visualizations: 20
  include_metrics_per_category: true
}

However, tensorboard doesn't show any per category metrics. Is there anything else I need to do?

like image 204
yijinliu Avatar asked Oct 17 '22 14:10

yijinliu


1 Answers

Ah I think the pycocotools from github doesn't support this feature. We had this implemented inside of Google, but it's not available outside.

like image 186
Zhichao Lu Avatar answered Oct 21 '22 05:10

Zhichao Lu