gpt4 book ai didi

python - 根据条件从另一个张量创建一个张量

转载 作者:行者123 更新时间:2023-12-01 01:31:31 25 4
gpt4 key购买 nike

我有一个像这样的张量

...
0
0
2
0
1
0
3
1
0
0
0
0
2
3
...

我必须找到一种方法来创建一个形状相同但只有 0 和 1 的张量。该张量必须与特定数字处于相同的位置。这是一个例子

# for number 2
...
0
0
1
0
0
0
0
0
0
0
0
0
1
0
...

是否有内置函数可以做到这一点?我在网上和文档中找不到任何内容。

然后我必须将该张量乘以这样的数字列表

l = [..., 1.3, 4.3, ...]

获取此内容

...
0
0
1.3
0
0
0
0
0
0
0
0
0
4.3
0
...

有办法获得这个结果吗?

编辑

在我的案例中应用此方法时遇到问题。我解释一下。我用来获取索引的张量是这样的

points = tf.constant([[[0], [1], [0], [2], [1], [0], [2], [2], [0], [1]],
[[1], [2], [0], [0], [1], [0], [1], [2], [0], [2]],
[[0], [2], [1], [0], [2], [0], [1], [2], [0], [1]]], dtype=tf.float32)
# shape=(3, 10, 1)

我必须只获取第一行的索引,所以我以这种方式获取它们

idx = tf.cast(tf.where(tf.equal(tf.slice(points, [0, 0, 0], [1, 10, 1]), tf.constant([2], dtype=tf.float32))), dtype=tf.int32)
# shape=(3, 3)
idx = tf.expand_dims(idx, 0)
# shape=(1, 3, 3)

要提供的值位于名为向量的列表中,我将它们转换为具有与此相同的形状

to_feed = np.expand_dims(np.array(vectors), 0)
# shape=(1, 3, 3)

然后我以这种方式应用该方法

res = tf.scatter_nd(idx, to_feed, tf.shape(tf.slice(points, [0, 0, 0], [1, 10, 3])))

但我收到此错误

ValueError: The inner 0 dimensions of output.shape=[?,?,?] must match the inner 1 dimensions of updates.shape=[1,3,3]: Shapes must be equal rank, but are 0 and 1 for 'ScatterNd' (op: 'ScatterNd') with input shapes: [1,3,3], [1,3,3], [3].

我最后需要的是这样的张量

to_feed = [[[10, 10, 10], [11, 11, 11], [12, 12, 12]]] # shape=(1, 3, 3)
res = [[[0, 0, 0], [10, 10, 10], [0, 0, 0], [11, 11, 11], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [12, 12, 12], [0, 0, 0]]] # shape=(1, 10, 3)

([0, 0, 0] 是随机放置的,只是为了有一个想法)

最佳答案

您可以与 tf.equal 进行比较然后将 bool 结果转换为数字 tf.cast :

import tensorflow as tf

vector = tf.placeholder(tf.int32, [None])
num = tf.placeholder(tf.int32, [])
result = tf.cast(tf.equal(vector, num), tf.int32)
with tf.Session() as sess:
print(sess.run(result, feed_dict={vector: [0, 0, 2, 1, 0, 3, 2, 0], num: 2}))

输出:

[0 0 1 0 0 0 1 0]
<小时/>

编辑:

上面解决了更简单的第一个问题,但我认为解决你的问题需要类似于下面的内容,使用 tf.wheretf.scatter_nd :

import tensorflow as tf

vector = tf.placeholder(tf.int32, [None])
num = tf.placeholder(tf.int32, [])
values = tf.placeholder(tf.float32, [None])
idx = tf.where(tf.equal(vector, num))
result = tf.scatter_nd(idx, values, tf.cast(tf.shape(vector), idx.dtype))
with tf.Session() as sess:
print(sess.run(result, feed_dict={vector: [0, 2, 1, 2, 3, 2, 2, 0],
num: 2,
values: [3, 4.4, 2, 2.2]}))

输出:

[0.  3.  0.  4.4 0.  2.  2.2 0. ]
<小时/>

编辑:

关于您最新的示例,我整理了一个片段,以实现我认为您想要实现的目标:

import tensorflow as tf

points = tf.constant([[[0], [1], [0], [2], [1], [0], [2], [2], [0], [1]],
[[1], [2], [0], [0], [1], [0], [1], [2], [0], [2]],
[[0], [2], [1], [0], [2], [0], [1], [2], [0], [1]]], dtype=tf.float32)
vectors = tf.constant([[10, 11, 12], [20, 21, 22], [30, 31, 21]], dtype=tf.float32)

points_row = points[:1]
idx = tf.where(tf.equal(points_row, 2))
idx = tf.cast(idx, tf.int32)
res_shape = tf.concat([tf.shape(points_row), [tf.shape(vectors)[1]]], axis=0)
res = tf.scatter_nd(idx, vectors, res_shape)
res = tf.squeeze(res, 2)

with tf.Session() as sess:
print(sess.run(res))

输出:

[[[ 0.  0.  0.]
[ 0. 0. 0.]
[ 0. 0. 0.]
[10. 11. 12.]
[ 0. 0. 0.]
[ 0. 0. 0.]
[20. 21. 22.]
[30. 31. 21.]
[ 0. 0. 0.]
[ 0. 0. 0.]]]

关于python - 根据条件从另一个张量创建一个张量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52815171/

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