摘要: 变量保存到文件 import tensorflow as tf import numpy as np # Create two variables. x_data = np.float32([1,2,3,4,5,6,7,8,9,0]) weights = tf.Variable(tf.random_normal([10, 1], stddev=0.35), name="weights") bias... 阅读全文
posted @ 2017-04-26 17:53 我花开后百花残 阅读(615) 评论(0) 推荐(0) 编辑