I have a trained model (Faster R-CNN) which I exported using export_inference_graph.py to use for inference. I\'m trying to understand the difference between the cr
export_inference_graph.py
Like to add, frozen_graph.pb includes two things: 1. Graph definition 2. Trained parameters
Whereas save_model.pb, just have graph definition.
That's why if you check the size of both the .pb files, frozen_graph.pb always be larger in size.