unable to use Trained Tensorflow model

前端 未结 3 1179
星月不相逢
星月不相逢 2021-02-09 12:32

I am new to Deep Learning and Tensorflow. I retrained a pretrained tensorflow inceptionv3 model as saved_model.pb to recognize different type of images but when

3条回答
  •  孤独总比滥情好
    2021-02-09 13:02

    Please use the frozen_inference_graph.pb to load the model, than to use the saved_model.pb

    Model_output
    - saved_model
      - saved_model.pb
    - checkpoint
    - frozen_inference_graph.pb     # Main model 
    - model.ckpt.data-00000-of-00001
    - model.ckpt.index
    - model.ckpt.meta
    - pipeline.config
    

提交回复
热议问题