首页 > 其他 > 详细

TF:利用TF的train.Saver将训练好的variables(W、b)保存到指定的index、meda文件

时间:2018-01-25 22:56:15      阅读:360      评论:0      收藏:0      [点我收藏+]
import tensorflow as tf
import numpy as np

W = tf.Variable([[2,1,8],[1,2,5]], dtype=tf.float32, name=weights)
b = tf.Variable([[1,2,5]], 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, "niu/save_net.ckpt") 
    print("Save to path: ", save_path)       

 

TF:利用TF的train.Saver将训练好的variables(W、b)保存到指定的index、meda文件

原文:https://www.cnblogs.com/yunyaniu/p/8353435.html

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