import tensorflow as tf
import numpy as np
# Save to file
# remember to define the same dtype and shape when restore
W = tf.Variable([[1,2,3],[3,4,5]],dtype=tf.float32,name='weights')
b = tf.Variable([[1,2,3]],dtype=tf.float32,name='biases')
init = tf.initialize_all_variables()
saver = tf.train.Saver()
with tf.Session() as sess:
sess.run(init)
save_path = saver.save(sess,"my_net/save_net.ckpt")
print("Save to path: ", save_path)
# restore variables
#redefine the same shape and same type for your variables
W = tf.Variable(np.arange(6).reshape((2,3)),dtype=tf.float32,name="weights")
b = tf.Variable(np.arange(3).reshape((1,3)),dtype=tf.float32,name="biases")
# not need init step
saver = tf.train.Saver()
with tf.Session() as sess:
saver.restore(sess,"my_net/save_net.ckpt")
print("weights: ",sess.run(W))
print("biases: ",sess.run(b))
tensorflow saver
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 3.1 TensorFlow的编译及安装 安装有两种情况 使用CPU,安装容易 使用GPU,需要先安装CUDA和c...
- 3.2 TensorFlow实现Softmax Regression识别手写数字 MNIST(Mixed Nati...
- 背景: 1、mac版本下面安装好python3.6.32、已安装好tensorflow 1.3.0 问题: 打开p...
- 配置深度学习主机与环境(TensorFlow+1080Ti):(一)硬件选购与主机组装(二)Win10&Ubunt...