标签: tensorflow
我是TensorFlow的新手,在区分这两个代码时我感到怀疑:
with tf.name_scope("param"): a3 = tf.Variable(0, name="a")
和
with tf.name_scope("param") as scope: a3 = tf.Variable(0, name="a")
作用域是什么?