- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看代码片段:
import tensorflow as tf
with tf.name_scope('y'):
a1 = tf.Variable(1,name='a')
with tf.name_scope('y'):
a2 = tf.Variable(1,name='b')
print(a1.name)
print(a2.name)
输出为
y/a:0
y_1/b:0
为什么变量a2的name_scope是y_1?
最佳答案
关于github关于这个话题有一个有趣的讨论。
您可以在末尾附加一个“/”,使其成为绝对标识符:
import tensorflow as tf
with tf.name_scope('y'):
a1 = tf.Variable(1,name='a')
with tf.name_scope('y/'):
a2 = tf.Variable(1,name='b')
print(a1.name)
print(a2.name)
其产量:
y/a:0
y/b:0
这同样适用于 tf.variable_scope() .
您的问题的底线可能是 Tensorflow 无法知道您是否明确想要向范围附加某些内容,或者是否有人在其他地方创建了不同的范围并希望保护您免受无意的重用。通过在末尾附加“/”,您可以将名称转变为绝对标识符。
关于tensorflow - 为什么同名的 tf.name_scope 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45670224/
我一直在看TensorFlow上的教程 with tf.name_scope('read_inputs') as scope: # something 这个例子 a = tf.constant
我有两个命名范围用于 CNN 的单独子图(使用 tf.variable_scope)。我可以将两个作用域合并为一个作用域,以便我的优化器仅更新两个作用域中的变量吗? 最佳答案 根据tf.Optmize
看代码片段: import tensorflow as tf with tf.name_scope('y'): a1 = tf.Variable(1,name='a') with tf.nam
如果我有以下named_scope named_scope :scope_by_user_id, lambda {|user_id| {:conditions => ["comments.user_i
如果我有以下named_scope named_scope :scope_by_user_id, lambda {|user_id| {:conditions => ["comments.user_i
我有以下的named_scope,它在MySQL和sqlite中工作正常,但在Postgres中却很糟糕: course.rb named_scope :current, :conditions =>
我正在尝试组织我的 TensorBoard 图,以便在我第一次启动 TensorBoard 时自动将某个组件放在一边。 我希望save节点在右边,像这样: 我可以在图表本身中右键单击保存,但我宁愿让它
这个问题在这里已经有了答案: What's the difference of name scope and a variable scope in tensorflow? (8 个回答) 关闭3年前
我正在使用Functional API TensorFlow 1.15 中的 Keras。我的模型很复杂并且具有嵌套结构,所以我在想tf.name_scope可能允许我创建一个很好的模块化结构,每个
Settings: Mac OS 10.14.6 Python 3.7.4 Tensorflow 2.0.0 我在 name_scope 设置方面遇到问题。我在代码中编写 name_scope() ,
我正在尝试运行一个脚本,但我已经在进口方面遇到了困难。这个导入 from keras.preprocessing.image import save_img 引发以下错误: AttributeErro
我有一些代码来计算我的 Estimator 中的性能指标用返回度量字典的函数编写的 model_fn def __model_eval_metrics(self, classes, labels, m
例如假设您有: class Model "SELECT * FROM somethings" end class Something [] Good!
我在使用 Tensorflow 时遇到问题: 以下代码为卷积 block 生成正确的图: def conv_layer(self, inputs, filter_size = 3, num_filte
我试图通过模仿 tf2.0 的文档来构建自定义模型。 enter link description here class CBR(layers.Layer): """C
回到 TensorFlow = 2.0 中消失了。因此,像这样的解决方案...... with tf.variable_scope("foo"): with tf.variable_scope
我是一名优秀的程序员,十分优秀!