本篇文章給大家分享的是有關(guān)TensorFlow中怎么將checkpoint文件轉(zhuǎn)換為pb文件,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

由于項目需要,需要將TensorFlow保存的模型從ckpt文件轉(zhuǎn)換為pb文件。
import osfrom tensorflow.python import pywrap_tensorflowfrom net2use import inception_resnet_v2_small#這里使用自己定義的模型函數(shù)即可import tensorflow as tfif __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中怎么將checkpoint文件轉(zhuǎn)換為pb文件,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降摹OM隳芡ㄟ^這篇文章學到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
分享標題:TensorFlow中怎么將checkpoint文件轉(zhuǎn)換為pb文件-創(chuàng)新互聯(lián)
當前網(wǎng)址:http://chinadenli.net/article26/edjcg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、網(wǎng)站內(nèi)鏈、用戶體驗、網(wǎng)站設(shè)計公司、品牌網(wǎng)站制作、域名注冊
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容