gpt4 book ai didi

python - Tensorflow - 按批处理索引对占位符进行分组

转载 作者:行者123 更新时间:2023-12-01 02:24:03 26 4
gpt4 key购买 nike

给定一个具有两个或多个不同维度占位符的网络,例如

x1 = tf.placeholder(tf.int32, [None, seq_len])
x2 = tf.placeholder(tf.int32, [None, seq_len])
xn = tf.placeholder(tf.int32, [None, None, seq_len]

每个占位符中的第一个维度对应于小批量大小。 seq_len是输入的长度。第二个维度就像我需要与 x1 一起处理的输入列表。和x2对于小批量中的每个索引。如何对这些张量进行分组以按批处理索引对它们进行操作?

例如

x1 = [[1, 2, 3], [4, 5, 6]]
x2 = [[7, 8, 9], [8, 7, 6]]
xn = [[[1, 5, 2], [7, 2, 8], [3, 2, 5]], [[8, 9, 8]]]

我需要保留x1[0] i.e. [1, 2, 3] , x2[0] i.e. [7, 8, 9] ,和xn[0] i.e. [[1, 5, 2], [7, 2, 8], [3, 2, 5]]一起,因为我需要在 x1[i] 之间执行矩阵运算以及 xn[i] 中的每个元素对于所有人i .

请注意 xn 的维数呈锯齿状。

最佳答案

还是不确定我是否理解你的问题。如果我理解正确的话,您的挑战来自于 xn 维度的锯齿状本质。我有以下方法可以沿着批处理索引“展开”。结果是一个大小为batch_size的数组;数组中的每个元素都是一个张量。当然,您可以在评估所有这些单独的张量之前对其执行其他操作。

我必须使用tf.scan对 xn[i] 的每个元素执行操作,因为它的第一个维度是动态的。不过可能存在更好的解决方案。

x1 = np.array([[1, 2, 3]])
xn = np.array([[[1, 5, 2], [7, 2, 8], [3, 2, 5]]])

batch_size = x1.shape[0]

result = []
for batch_idx in range(batch_size):
x1_i = x1[batch_idx]
xn_i = xn[batch_idx]
result.append(tf.scan(fn=lambda a, x: x * x1_i, elems=xn_i, initializer=x1_i))
with tf.Session() as sess:
print sess.run([result[0]])

# result, this is x1[0] multiply each element in xn[0] for all i (element-wise).
# free free to plug in your own matrix operations in the `fn` arg of `tf.scan`.
[array([[ 1, 10, 6],
[ 7, 4, 24],
[ 3, 4, 15]])]

关于python - Tensorflow - 按批处理索引对占位符进行分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47580615/

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