TF:利用TF的train.Saver将训练好的variables(W、b)保存到指定的index、meda文件—Jason niu
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)
不念过去,不畏将来!
理想,信仰,使命感……
愿你出走半生,归来仍是少年……

浙公网安备 33010602011771号