标签:ati 现在 value 获取 opera 改变 its ons with
这篇教程分为两部分,第一部分用例子解释基础概念,第二部分构建逻辑回归模型。
TensorFlow是一个数据流经过的图,数据表示为n维向量,图由数据和操作组成。
TensorFlow跟其他编程语言不同之处在于不论你想创建什么都必须先创建一幅蓝图,默认初始化是不包含任何变量的。
sankit@sankit:~$ python Python 2.7.6 (default, Oct 26 2016, 20:30:19) [GCC 4.8.4] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> >>> import tensorflow as tf
graph = tf.get_default_graph()
你可以获取图的全部操作:
graph.get_operations()
for op in graph.get_operations(): print(op.name)
你可以打印出它们的名字,当然在我们没有添加操作之前,它还是空的。
图用于定义操作,但是操作必须在会话中执行,它们之间是独立创建的,你可以把图想象为蓝图,把会话想象为建筑工地。
图只定义了操作,但并没有变量,更没有值,只有我们在会话中运行图,这一切才有意义。
你可以像这样创建会话:
sess=tf.Session() ... your code ... ... your code ... sess.close()
记得一定要关闭会话,或者你可以像这样使用:
with tf.Session() as sess: sess.run(f)
这样会话就自动关闭了,当然我们也推荐你这样使用。
a=tf.constant(1.0) a <tf.Tensor‘Const:0‘ shape=() dtype=float32> print(a) Tensor("Const:0", shape=(), dtype=float32)
它不能像Python一样打印或者访问,除非你在会话中使用:
with tf.Session() as sess: print(sess.run(a))
>>>b = tf.Variable(2.0,name="test_var") >>>b <tensorflow.python.ops.variables.Variable object at 0x7f37ebda1990>
with tf.Session() as sess: sess.run(init_op) print(sess.run(b))
这将输出2
现在我们来打印图的操作:
graph = tf.get_default_graph() for op in graph.get_operations(): print(op.name)
输出:
Const
test_var/initial_value
test_var
test_var/Assign
test_var/read
init
就像你看到的,因为我们使用了常量a,所以图中加入了Const.同样因为我们定义了变量b,所以test_var开头的操作被加入到图中,你可以使用名叫TensorBoard的工具,
来可视化一张图或者训练过程。
TensorFlow Tutorial: 10 minutes Practical TensorFlow lesson for quick learners(译)
标签:ati 现在 value 获取 opera 改变 its ons with
原文地址:https://www.cnblogs.com/lnas01/p/10405831.html