gpt4 book ai didi

python - tensorflow 将每一行除以不同的总和

转载 作者:行者123 更新时间:2023-11-28 20:36:59 32 4
gpt4 key购买 nike

假设我有一个这样的张量:

T = [[1,2,3,4], 
[5,6,7,8],
[9,10,11,12]].

我已经使用 reduce_sum(T, 1) 获得不同张量中的所有总和,但我似乎无法找到一种方法来实际按行划分总和。我如何在 Tensorflow 中将每一行除以它的总和(即将 [1,2,3,4] 除以 10,[5,6,7,8] 除以 26,等等)?

最佳答案

这很容易实现,只需将矩阵元素除以表示每个维度总和的向量即可:

import tensorflow as tf
a = tf.constant([
[1, 2, 3, 4],
[5, 6, 7, 8]
], dtype=tf.float32)

b = tf.reduce_sum(a, axis=1)

c = a / tf.reshape(b, (-1, 1))
with tf.Session() as sess:
print sess.run(c)

关于python - tensorflow 将每一行除以不同的总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44094046/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com