gpt4 book ai didi

python - 如何在 tensorflow 中的张量的某些索引处插入某些值?

转载 作者:行者123 更新时间:2023-11-28 18:57:26 25 4
gpt4 key购买 nike

假设我有一个张量 input 的形状 100x1 和另一个张量 inplace 的形状 20x1 和一个形状为 100x1index_tensorindex_tensor 表示 input 的位置,我想从 inplace 中插入值。 index_tensor 只有 20 个 True 值,其余值为 False。我尝试在下面解释所需的操作。 enter image description here如何使用tensorflow实现这个操作。

assign 操作仅适用于 tf.Variable,而我想将其应用于 tf.nn.rnn 的输出。

我读到可以使用 tf.scatter_nd 但它需要 inplaceindex_tensor 具有相同的形状。

我想使用它的原因是我从 rnn 得到一个输出,然后我从中提取一些值并将它们提供给一些密集层,这个来自密集层的输出,我想插入到我的原始张量中从rnn操作中得到。由于某些原因,我不想对 rnn 的整个输出应用密集层操作,如果我不将密集层的结果插入到 rnn 的输出中,那么密集层就没用了。

任何建议将不胜感激。

最佳答案

因为您拥有的张量是不可变的,所以您不能为其分配新值,也不能就地更改它。您要做的是使用标准操作修改它的值。以下是您的操作方法:

input_array = np.array([2, 4, 7, 11, 3, 8, 9, 19, 11, 7])
inplace_array = np.array([10, 20])
indices_array = np.array([0, 0, 1, 0, 0, 0, 1, 0, 0, 0])
# [[2], [6]]
indices = tf.cast(tf.where(tf.equal(indices_array, 1)), tf.int32)
# [0, 0, 10, 0, 0, 0, 20, 0, 0, 0]
scatter = tf.scatter_nd(indices, inplace_array, shape=tf.shape(input_array))
# [1, 1, 0, 1, 1, 1, 0, 1, 1, 1]
inverse_mask = tf.cast(tf.math.logical_not(indices_array), tf.int32)
# [2, 4, 0, 11, 3, 8, 0, 19, 11, 7]
input_array_zero_out = tf.multiply(inverse_mask, input_array)
# [2, 4, 10, 11, 3, 8, 20, 19, 11, 7]
output = tf.add(input_array_zero_out, tf.cast(scatter, tf.int32))

关于python - 如何在 tensorflow 中的张量的某些索引处插入某些值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56655103/

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