I followed this tutorial to train a custom object detector. I have followed the tutorial successfully to the end and exported the trained inference graph. This step states:
Once your training job is complete, you need to extract the newly trained inference graph, which will be later used to perform the object detection.
I now have a directory structure under the training demo:
training_demo
\ trained-inference-graphs
\ output_inference_Graph_v1.pb
\ saved_model
\ variables
- saved_model.pb
- checkpoint
- frozen_inference_graph.pb
- model.ckpt.data-00000-of-00001
- model.ckpt.index
- model.ckpt.meta
- pipeline.config
The problem is that I cannot find any instructions on how to use this with new images to detect the objects in them?
I want to load this newly trained model and pass it some images to detect objects.