赞
踩
variable_scope
和之间有什么区别name_scope
?该变量的作用域教程挂在嘴边variable_scope
隐含打开name_scope
.我还注意到,在a中创建变量也会name_scope
自动扩展其名称以及作用域名称.那么区别是什么呢?
在尝试通过创建一个简单示例来可视化所有内容之前,我在理解variable_scope和name_scope之间的区别(它们看起来几乎相同)时遇到了问题:
import tensorflow as tf def scoping(fn, scope1, scope2, vals): with fn(scope1): a = tf.Variable(vals[0], name='a') b = tf.get_variable('b', initializer=vals[1]) c = tf.constant(vals[2], name='c') with fn(scope2): d = tf.add(a * b, c, name='res') print '\n '.join([scope1, a.name, b.name, c.name, d.name]), '\n' return d d1 = scoping(tf.variable_scope, 'scope_vars', 'res', [1, 2, 3]) d2 = scoping(tf.name_scope, 'scope_name', 'res', [1, 2, 3]) with tf.Session() as sess: writer = tf.summary.FileWriter('logs', sess.graph) sess.run(tf.global_variables_initializer()) print sess.run([d1, d2]) writer.close()
在这里,我创建了一个函数,它创建了一些变量和常量,并在范围内对它们进行分组(取决于我提供的类型).在这个函数中,我还打印所有变量的名称.之后,我执行图形以获取结果值的值并保存事件文件以在tensorboard中调查它们.如果你运行它,你将得到以下内容:
scope_vars scope_vars/a:0 scope_vars/b:0 scope_vars/c:0 scope_vars/res/res:0 scope_name scope_name/a:0 b:0 scope_name/c:0 scope_name/res/res:0
如果打开TB,您会看到类似的模式(如您所见b
,在scope_name
矩形之外):
这给你答案:
现在你看到tf.variable_scope()
为所有变量的名称添加前缀(无论你如何创建它们),ops,常量.另一方面tf.name_scope()
忽略使用创建的变量,tf.get_variable()
因为它假设您知道要使用哪个变量以及在哪个范围内.
关于共享变量的好文档告诉你
tf.variable_scope()
:管理传递给的名称的名称空间tf.get_variable()
.
相同的文档提供了有关变量范围如何工作以及何时有用的更多详细信息.
当您使用tf.get_variable
而不是创建变量时tf.Variable
,Tensorflow将开始检查使用相同方法创建的变量的名称,以查看它们是否发生冲突.如果他们这样做,将引发例外.如果您tf.get_variable
使用tf.name_scope
上下文管理器创建了一个var 并尝试更改变量名的前缀,则这不会阻止Tensorflow引发异常.tf.variable_scope
在这种情况下,只有上下文管理器才能有效地更改var的名称.或者,如果要重用变量,则应在第二次创建var之前调用scope.reuse_variables().
总之,tf.name_scope
只需为该范围内创建的所有张量添加前缀(除了使用其创建的变量tf.get_variable
),并tf.variable_scope
为使用的变量添加前缀tf.get_variable
.
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。