- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
(编辑 w.r.t. @quirk 的回答)
我在网上阅读了一些 tensorflow 代码,看到了这样的语句:
threshold = tf.select(input > RLSA_THRESHOLD, positive, negative)
来源:https://github.com/Raverss/tensorflow-RLSA-NMS/blob/master/source.py#L31
positive
是只有 1
的张量,negative
也与 0
大小相同s 和输入是一些相同大小的热图(/张量)(所有类型 tf.float32
)。
代码片段对我来说似乎相当先进,假设作者会使用 tf.cast(input > RLSA_THRESHOLD, tf.float32)
如果没有特定的原因 tf.select(...)
表达式。特别是因为这会消除对变量 positive
和 negative
的需要,并且会节省内存,因为它们只是存储 0
的昂贵冗余方式> 和 1
。
前面提到的 tf.select(...)
表达式是否等同于 tf.cast(input > RLSA_THRESHOLD, tf.float32)
?如果不是,为什么不呢?
注意:我通常使用 Keras,如果我在这里触及一些非常琐碎的事情,我深表歉意。
最佳答案
嗯,RTD(阅读文档)!
tf.select根据 condition
张量中元素的 boolness 从 positive
或 negative
张量中选择元素。
tf.select(condition, t, e, name=None)
Selects elements from t or e, depending on condition.
The t, and e tensors must all have the same shape, and the output will also have that shape.
(来自官方文档。)
所以在你的情况下:
threshold = tf.select(input > RLSA_THRESHOLD, positive, negative)
input > RLSA_THRESHOLD
将是 bool
或逻辑值的张量(0
或 1
符号),这将有助于从 positive
向量或 negative
向量中选择一个值。
例如,假设您的 RLSA_THRESHOLD
为 0.5,并且您的 input
向量是一个由 0 到 1 之间的实数连续值组成的 4 维向量。您的 positive
和 negative
向量本质上是 [1, 1, 1, 1]
和 [0, 0, 0, 0]
,分别。 输入
是[0.8, 0.2, 0.5, 0.6]
。
threshold
将为 [1, 0, 0, 1]
。
注意 positive
和negative
可以是任何类型的张量,只要维度符合条件
张量。如果 positive
和 negative
是,比方说,[2, 4, 6, 8]
和 [1, 3, 5, 7 ]
,您的阈值
应该是[2, 3, 5, 8]
。
The code snippet seems reasonably advanced for me to assume that the authors would have just used
input > RLSA_THRESHOLD
if there was no specific reason for thetf.select
.
这是有充分理由的。 input > RLSA_THRESHOLD
只会返回逻辑( bool )值的张量。逻辑值不会与数值混合得很好。您不能将它们用于任何实际的数值计算。如果 positive
和/或 negative
张量具有实数值,您可能需要您的 threshold
张量也具有实数值,以防您计划进一步使用它们。
Is the
tf.select
equivalent toinput > RLSA_THRESHOLD
? If not, why not?
不,他们不是。一个是函数,另一个是张量。
我会给你带来怀疑的好处,并假设你想问:
Is the
threshold
equivalent toinput > RLSA_THRESHOLD
? If not, why not?
不,他们不是。如上所述,input > RLSA_THRESHOLD
是一个数据类型为 bool
的逻辑张量。另一方面,threshold
是与positive
和negative
具有相同数据类型的张量。
注意:您始终可以使用任何 casting 将逻辑张量转换为数值(或任何其他支持的数据类型)张量tensorflow 中可用的方法.
关于python - tf.select 有什么用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41505746/
在 Tensorflow(从 v1.2.1 开始)中,似乎有(至少)两个并行 API 来构建计算图。 tf.nn 中有函数,如 conv2d、avg_pool、relu、dropout,tf.laye
我正在处理眼睛轨迹数据和卷积神经网络。我被要求使用 tf.reduce_max(lastconv, axis=2)代替 MaxPooling 层和 tf.reduce_sum(lastconv,axi
TensorFlow 提供了 3 种不同的数据存储格式 tf.train.Feature .它们是: tf.train.BytesList tf.train.FloatList tf.train.In
我正在尝试为上下文强盗问题 (https://medium.com/emergent-future/simple-reinforcement-learning-with-tensorflow-part
我在使用 Tensorflow 时遇到问题: 以下代码为卷积 block 生成正确的图: def conv_layer(self, inputs, filter_size = 3, num_filte
我正在将我的训练循环迁移到 Tensorflow 2.0 API .在急切执行模式下,tf.GradientTape替换 tf.gradients .问题是,它们是否具有相同的功能?具体来说: 在函数
tensorflow 中 tf.control_dependencies(tf.get_collection(tf.GraphKeys.UPDATE_OPS)) 的目的是什么? 更多上下文:
我一直在努力学习 TensorFlow,我注意到不同的函数用于相同的目标。例如,为了平方变量,我看到了 tf.square()、tf.math.square() 和 tf.keras.backend.
我正在尝试使用自动编码器开发图像着色器。有 13000 张训练图像。如果我使用 tf.data,每个 epoch 大约需要 45 分钟,如果我使用 tf.utils.keras.Sequence 大约
我尝试按照 tensorflow 教程实现 MNIST CNN 神经网络,并找到这些实现 softmax 交叉熵的方法给出了不同的结果: (1) 不好的结果 softmax = tf.nn.softm
其实,我正在coursera上做deeplearning.ai的作业“Art Generation with Neural Style Transfer”。在函数 compute_layer_styl
训练神经网络学习“异或” 我正在尝试使用“批量归一化”,我创建了一个批量归一化层函数“batch_norm1”。 import tensorflow as tf import nump
我正在尝试协调来自 TF“图形和 session ”指南以及 TF“Keras”指南和 TF Estimators 指南的信息。现在在前者中它说 tf.Session 使计算图能够访问物理硬件以执行图
我正在关注此处的多层感知器示例:https://github.com/aymericdamien/TensorFlow-Examples我对函数 tf.nn.softmax_cross_entropy
回到 TensorFlow = 2.0 中消失了。因此,像这样的解决方案...... with tf.variable_scope("foo"): with tf.variable_scope
我按照官方网站中的步骤安装了tensorflow。但是,在该网站中,作为安装的最后一步,他们给出了一行代码来“验证安装”。但他们没有告诉这段代码会给出什么输出。 该行是: python -c "imp
代码: x = tf.constant([1.,2.,3.], shape = (3,2,4)) y = tf.constant([1.,2.,3.], shape = (3,21,4)) tf.ma
我正在尝试从 Github 训练一个 3D 分割网络.我的模型是用 Keras (Python) 实现的,这是一个典型的 U-Net 模型。模型,总结如下, Model: "functional_3"
我正在使用 TensorFlow 2。我正在尝试优化一个函数,该函数使用经过训练的 tensorflow 模型(毒药)的损失。 @tf.function def totalloss(x): x
试图了解 keras 优化器中的 SGD 优化代码 (source code)。在 get_updates 模块中,我们有: # momentum shapes = [K.int_shape(p) f
我是一名优秀的程序员,十分优秀!