张量流中的名称范围

时间:2018-07-24 18:48:20

标签: 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")

作用域是什么?

0 个答案:

没有答案