gpt4 book ai didi

python - 如何使用 TensorFlow 中的指定索引访问 3D 张量的元素?

转载 作者:行者123 更新时间:2023-12-03 20:49:53 24 4
gpt4 key购买 nike

我正在尝试以特定的索引顺序获取 3D 张量的行。以下是输入:

import tensorflow as tf

matrix = tf.constant([
[[0, 1], [2, 3], [4, 5], [6, 7]],
[[8, 9], [10, 11], [12, 13], [14, 15]],
[[16, 17], [18, 19], [20, 21], [22, 23]],
[[24, 25], [26, 27], [28, 29], [30, 31]],
[[32, 33], [34, 35], [36, 37], [38, 39]]
])

indx = tf.constant([[3,2,1,0], [0,1,2,3], [1,0,3,2], [0,3,1,2], [1,2,3,0]])

# required output tensor:
[[[6, 7], [4, 5], [2, 3], [0, 1]],
[[8, 9], [10, 11], [12, 13], [14, 15]],
[[18, 19], [16, 17], [22, 23], [20, 21]],
[[24, 25], [30, 31], [26, 27], [28, 29]],
[[34, 35], [36, 37], [38, 39], [32, 33]]]

我正在为 tf.gather_nd() 苦苦挣扎.有什么建议吗?我可以看到它发生在这里,但我不确定 如何在不使用的情况下应用于整个矩阵 for循环或 tf.map_fn
print(tf.gather_nd(matrix[0], tf.expand_dims(indx, -1)[0]).numpy().tolist())
print(tf.gather_nd(matrix[1], tf.expand_dims(indx, -1)[1]).numpy().tolist())
print(tf.gather_nd(matrix[2], tf.expand_dims(indx, -1)[2]).numpy().tolist())
print(tf.gather_nd(matrix[3], tf.expand_dims(indx, -1)[3]).numpy().tolist())
print(tf.gather_nd(matrix[4], tf.expand_dims(indx, -1)[4]).numpy().tolist())

"""
[[6, 7], [4, 5], [2, 3], [0, 1]]
[[8, 9], [10, 11], [12, 13], [14, 15]]
[[18, 19], [16, 17], [22, 23], [20, 21]]
[[24, 25], [30, 31], [26, 27], [28, 29]]
[[34, 35], [36, 37], [38, 39], [32, 33]]
"""
编辑:我问了一个关于 numpy 的类似问题。一个聪明的索引答案确实解决了 numpy 版本,但很难将它应用于张量。请随意查看此处接受的答案: How can I get elements from 3D matrix using specified indices in numpy?

最佳答案

呃,那是愚蠢的!在 tensorflow 中已经有一个非常棒的函数可以处理多维数组; tf.gather() 查看 batch_dims更多信息的论据。

>> tf.gather(matrix, indx, batch_dims=1).numpy().tolist()
[[[6, 7], [4, 5], [2, 3], [0, 1]],
[[8, 9], [10, 11], [12, 13], [14, 15]],
[[18, 19], [16, 17], [22, 23], [20, 21]],
[[24, 25], [30, 31], [26, 27], [28, 29]],
[[34, 35], [36, 37], [38, 39], [32, 33]]]

关于python - 如何使用 TensorFlow 中的指定索引访问 3D 张量的元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63431408/

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