我已经使用张量流训练了回归模型。模型保存的文件,如
现在,如果我想使用这些文件来预测新数据集(测试数据)的输出值,我该怎么做?
答案 0 :(得分:1)
sess=tf.Session()
#First load meta graph and restore weights
saver = tf.train.import_meta_graph('model.ckpt-4000.meta')
saver.restore(sess,tf.train.latest_checkpoint('./'))
# create feed-dict to feed new data and specify the y variable to be evaluated
sess.run(y,feed_dict)