visipedia/inat_comp

How can I extract the taxa names?

WilliamStewart9 opened this issue · 1 comments

I can extract the following from the output;
•num_detections
•detection_classes
•detection_boxes
•detection_scores

by using the following;

[sess.graph.get_tensor_by_name(‘num_detections:0’),
sess.graph.get_tensor_by_name(‘detection_scores:0’),
sess.graph.get_tensor_by_name(‘detection_boxes:0’),
sess.graph.get_tensor_by_name(‘detection_classes:0’)]

When I print out the resulting 5 sets of detection_classes and scores;

350
0.9786933660507202

358
0.018166758120059967

323
0.01589692384004593

360
0.010653774254024029

348
0.003607431659474969

What is the tensor output name for detection_class so that I can get that tensor by name? Or is there some other approach?

This issue looks like it is related to training detectors not the dataset itself. Unless there are any objections I'm closing it.