TensorFlow實現(xiàn)checkpoint文件轉(zhuǎn)換為pb文件
更新時間:2020年02月10日 14:57:22 作者:kuadoh96
今天小編就為大家分享一篇TensorFlow實現(xiàn)checkpoint文件轉(zhuǎn)換為pb文件,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
由于項目需要,需要將TensorFlow保存的模型從ckpt文件轉(zhuǎn)換為pb文件。
import os from tensorflow.python import pywrap_tensorflow from net2use import inception_resnet_v2_small#這里使用自己定義的模型函數(shù)即可 import tensorflow as tf if __name__=='__main__': pb_file = "./model/output.pb" ckpt_file = "./model/model.ckpt-652900" ''' 這里的節(jié)點名字可能跟設(shè)想的有出入,最直接的方法是直接輸出ckpt中保存的節(jié)點名字,然后對應(yīng)著找節(jié)點名字,具體的進入convert_variables_to_constants函數(shù)的實現(xiàn)中g(shù)raph_util_impl.py,130行的函數(shù):_assert_nodes_are_present 添加代碼 print('在圖中的節(jié)點是:') for din in name_to_node: print('{},在圖中'.format(din)) 然后運行代碼,若正確就會直接保存;若失敗則會保存失敗,找好輸出節(jié)點的名字,在output_node_names 中添加就好 ''' output_node_names = ["embedding"] with tf.name_scope('input'): image = tf.placeholder(tf.float32,shape=(None,79,199,1),name='input_image') net, endpoints=inception_resnet_v2_small(image, is_training=False) embedding = tf.nn.l2_normalize(net,1,1e-10,name='embedding') config=tf.ConfigProto(allow_soft_placement=True) config.gpu_options.per_process_gpu_memory_fraction = 0.45 sess = tf.Session(config = config) saver = tf.train.Saver() saver.restore(sess, ckpt_file) print('read success') converted_graph_def = tf.graph_util.convert_variables_to_constants(sess, input_graph_def = sess.graph.as_graph_def(), output_node_names = output_node_names) with tf.gfile.GFile(pb_file, "wb") as f: f.write(converted_graph_def.SerializeToString()) print('保存成功')
以上這篇TensorFlow實現(xiàn)checkpoint文件轉(zhuǎn)換為pb文件就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
python數(shù)字圖像處理之基本形態(tài)學(xué)濾波
這篇文章主要為大家介紹了python數(shù)字圖像處理之基本形態(tài)學(xué)濾波示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2022-06-06Python對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)問題
這篇文章主要介紹了Python對圖片進行resize、裁剪、旋轉(zhuǎn)、翻轉(zhuǎn)問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2023-05-05