溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader

發(fā)布時(shí)間:2021-05-27 14:22:25 來源:億速云 閱讀:126 作者:小新 欄目:開發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

使用tf.trian.NewCheckpointReader(model_dir)

一個(gè)標(biāo)準(zhǔn)的模型文件有一下文件, model_dir就是MyModel(沒有后綴)

checkpoint
Model.meta
Model.data-00000-of-00001
Model.index
import tensorflow as tf
import pprint # 使用pprint 提高打印的可讀性
NewCheck =tf.train.NewCheckpointReader("model")

打印模型中的所有變量

print("debug_string:\n")
pprint.pprint(NewCheck.debug_string().decode("utf-8"))

tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader

其中有3個(gè)字段, 分別是名字, 數(shù)據(jù)類型, shape

獲取變量中的值

print("get_tensor:\n")
pprint.pprint(NewCheck.get_tensor("D/conv2d/bias"))

tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader

print("get_variable_to_dtype_map\n")
pprint.pprint(NewCheck.get_variable_to_dtype_map())
print("get_variable_to_shape_map\n")
pprint.pprint(NewCheck.get_variable_to_shape_map())

tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader

關(guān)于“tensorflow如何實(shí)現(xiàn)讀取模型中保存的值 tf.train.NewCheckpointReader”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯(cuò),請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI