with g1.as_default() :
with tf.variable_scope("testa") :
tf.get_variable(name = "a", shape = [1], dtype = tf.float32, initializer = tf.ones_initializer )
tf.constant( value = [1], dtype = tf.float32, name = "b" )
我们可以使用name
的属性tf.get_variable
在任何地方的张量流中选择变量。例如,在图像中,我们可以使用tf.get_variable("a")
在图g
中获取变量。我们如何使用相同或相似的方法来获取常数"b"
?