What is difference frozen_inference_graph.pb and saved_model.pb?

后端 未结 2 1693
终归单人心
终归单人心 2021-01-30 22:05

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

2条回答
  •  星月不相逢
    2021-01-30 22:18

    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.

提交回复
热议问题