- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我不明白为什么下面代码的输出是[7 56]
。
import tensorflow as tf
x = tf.constant([[1, 2, 4], [8, 16, 32]])
a = tf.reduce_sum(x, -1) # [ 9 18 36]
with tf.Session() as sess:
output_a = sess.run(a)
print(output_a)
我知道按行添加已经完成。但是有人可以阐明为什么 reduce_sum
函数中的 -1
被视为对一行中的所有值求和吗?
最佳答案
-1
表示最后一个轴;因为你有一个 2 阶张量,所以最后一个轴是第二个轴,也就是沿着行; tf.reduce_sum
与 axis=-1
将因此减少(求和)第二个维度。
关于python - tf.reduce_sum 对 axis = -1 做了什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53486527/
我正在处理眼睛轨迹数据和卷积神经网络。我被要求使用 tf.reduce_max(lastconv, axis=2)代替 MaxPooling 层和 tf.reduce_sum(lastconv,axi
我正在学习 tensorflow,我从 tensorflow 网站上拿起了以下代码。根据我的理解,axis=0 代表行,axis=1 代表列。 他们如何获得评论中提到的输出?我已经根据我对##的想法提
我想改变典型的 MSE 损失函数。现在我有以下代码: squared_difference = tf.reduce_sum(tf.square(target - output), [1]) mse_l
更新:在 Tensorflow 1.14.0 中修复(可能更早,没有检查) 更新:仍在 Tensorflow 1.7.0 中发生 更新:我写了一个协作笔记本,在 google 的 gpu 硬件上重现了
我不明白为什么下面代码的输出是[7 56]。 import tensorflow as tf x = tf.constant([[1, 2, 4], [8, 16, 32]]) a = tf.redu
import tensorflow as tf import numpy as np #date generation x_data = np.float32(np.random.rand(2, 10
我正在关注此处的多层感知器示例:https://github.com/aymericdamien/TensorFlow-Examples我对函数 tf.nn.softmax_cross_entropy
我按照官方网站中的步骤安装了tensorflow。但是,在该网站中,作为安装的最后一步,他们给出了一行代码来“验证安装”。但他们没有告诉这段代码会给出什么输出。 该行是: python -c "imp
我是一名优秀的程序员,十分优秀!