快活林资源网 Design By www.csstdc.com
话不多说,干就完了。
变量重命名的用处?
简单定义:简单来说就是将模型A中的参数parameter_A赋给模型B中的parameter_B
使用场景:当需要使用已经训练好的模型参数,尤其是使用别人训练好的模型参数时,往往别人模型中的参数命名方式与自己当前的命名方式不同,所以在加载模型参数时需要对参数进行重命名,使得代码更简洁易懂。
实现方法:
1)、模型保存
import os import tensorflow as tf weights = tf.Variable(initial_value=tf.truncated_normal(shape=[1024, 2], mean=0.0, stddev=0.1), dtype=tf.float32, name="weights") biases = tf.Variable(initial_value=tf.zeros(shape=[2]), dtype=tf.float32, name="biases") weights_2 = tf.Variable(initial_value=weights.initialized_value(), dtype=tf.float32, name="weights_2") # saver checkpoint if os.path.exists("checkpoints") is False: os.makedirs("checkpoints") saver = tf.train.Saver() with tf.Session() as sess: init_op = [tf.global_variables_initializer()] sess.run(init_op) saver.save(sess=sess, save_path="checkpoints/variable.ckpt")
2)、模型加载(变量名称保持不变)
import tensorflow as tf from matplotlib import pyplot as plt import os current_path = os.path.dirname(os.path.abspath(__file__)) def restore_variable(sess): # need not initilize variable, but need to define the same variable like checkpoint weights = tf.Variable(initial_value=tf.truncated_normal(shape=[1024, 2], mean=0.0, stddev=0.1), dtype=tf.float32, name="weights") biases = tf.Variable(initial_value=tf.zeros(shape=[2]), dtype=tf.float32, name="biases") weights_2 = tf.Variable(initial_value=weights.initialized_value(), dtype=tf.float32, name="weights_2") saver = tf.train.Saver() ckpt_path = os.path.join(current_path, "checkpoints", "variable.ckpt") saver.restore(sess=sess, save_path=ckpt_path) weights_val, weights_2_val = sess.run( [ tf.reshape(weights, shape=[2048]), tf.reshape(weights_2, shape=[2048]) ] ) plt.subplot(1, 2, 1) plt.scatter([i for i in range(len(weights_val))], weights_val) plt.subplot(1, 2, 2) plt.scatter([i for i in range(len(weights_2_val))], weights_2_val) plt.show() if __name__ == '__main__': with tf.Session() as sess: restore_variable(sess)
3)、模型加载(变量重命名)
import tensorflow as tf from matplotlib import pyplot as plt import os current_path = os.path.dirname(os.path.abspath(__file__)) def restore_variable_renamed(sess): conv1_w = tf.Variable(initial_value=tf.truncated_normal(shape=[1024, 2], mean=0.0, stddev=0.1), dtype=tf.float32, name="conv1_w") conv1_b = tf.Variable(initial_value=tf.zeros(shape=[2]), dtype=tf.float32, name="conv1_b") conv2_w = tf.Variable(initial_value=conv1_w.initialized_value(), dtype=tf.float32, name="conv2_w") # variable named 'weights' in ckpt assigned to current variable conv1_w # variable named 'biases' in ckpt assigned to current variable conv1_b # variable named 'weights_2' in ckpt assigned to current variable conv2_w saver = tf.train.Saver({ "weights": conv1_w, "biases": conv1_b, "weights_2": conv2_w }) ckpt_path = os.path.join(current_path, "checkpoints", "variable.ckpt") saver.restore(sess=sess, save_path=ckpt_path) conv1_w__val, conv2_w__val = sess.run( [ tf.reshape(conv1_w, shape=[2048]), tf.reshape(conv2_w, shape=[2048]) ] ) plt.subplot(1, 2, 1) plt.scatter([i for i in range(len(conv1_w__val))], conv1_w__val) plt.subplot(1, 2, 2) plt.scatter([i for i in range(len(conv2_w__val))], conv2_w__val) plt.show() if __name__ == '__main__': with tf.Session() as sess: restore_variable_renamed(sess)
总结:
# 之前模型中叫 'weights'的变量赋值给当前的conv1_w变量
# 之前模型中叫 'biases' 的变量赋值给当前的conv1_b变量
# 之前模型中叫 'weights_2'的变量赋值给当前的conv2_w变量
saver = tf.train.Saver({
"weights": conv1_w,
"biases": conv1_b,
"weights_2": conv2_w
})
以上这篇tensorflow模型保存、加载之变量重命名实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
快活林资源网 Design By www.csstdc.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
快活林资源网 Design By www.csstdc.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2025年01月02日
2025年01月02日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]