i used the Google TensorFlow Object detection API [https://github.com/tensorflow/models][1] to train on my own dataset using Faster RCNN inception v2 model and bty writing some of my own scripts in python 3. It works fairly well on my videos and now I want to output the predicted bounding boxes to calculate mAP. IS there any way to do this?
I have three files generated from training:
- model.ckpt-6839.data-00000-of-00001
- model.ckpt-6839.index
- model.ckpt-6839.meta
Is the predicted boxes contained in one of these files? Or are they stored somewhere else? Or do they need to be coded separately for the coordinates to be extracted?