首页 > 其他 > 详细

莫烦tensorflow(9)-Save&Restore

时间:2017-08-19 15:32:58      阅读:480      评论:0      收藏:0      [点我收藏+]

import tensorflow as tf
import numpy as np

##save to file
#rember 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.global_variables_initializer()

# 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)

#resotre 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(9)-Save&Restore

原文:http://www.cnblogs.com/payne1991/p/7396575.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!