gpt4 book ai didi

python - Tensorflow 合并维度和反向合并

转载 作者:太空狗 更新时间:2023-10-30 01:11:57 28 4
gpt4 key购买 nike

假设我有一个形状为 [3, 5, 200, 300, 3] 的张量。我怎样才能将前两个 dim 合并在一起,以便我得到形状为 [15, 200, 300, 3] 的张量?然后我应该能够反向合并操作并具有原始形状。

最佳答案

你可以只使用tf.reshape

a = tf.random_normal(shape=(3, 5, 200, 300, 3))
b = tf.reshape(a, shape=(15, 200, 300, 3))
...
c = tf.reshape(b, shape=(3, 5, 200, 300, 3))

关于python - Tensorflow 合并维度和反向合并,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45922913/

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