目录
问题详情:
最近学习深度学习相关教程,教材是18年《Hands-On Reinforcement Learning with Python》。其中因为tensorflow版本不同踩了许多坑。
源代码如下
with tf.name_scope("Computation"):
with tf.name_scope("Part1"):
a = tf.constant(5)
b = tf.constant(4)
c = tf.multiply(a,b)
with tf.name_scope("Part2"):
d = tf.constant(2)
e = tf.constant(3)
f =