有没有办法在Tensorflow中合并Tensor?例如:我有128Tensor形状都是**(40,10)**,现在,我想合并他们的形状(128,40,10).我不能直接使用 *tf.stack([Tensor1, Tensor2, Tensor3, ...])*.那么,有没有什么功能可以帮助实现这一点?
*tf.stack([Tensor1, Tensor2, Tensor3, ...])*
6uxekuva1#
将tf.expand_dims与tf.concat一起使用:
tf.expand_dims
tf.concat
import tensorflow as tf x1 = tf.expand_dims(tf.random.normal((40, 10)), axis=0) x2 = tf.expand_dims(tf.random.normal((40, 10)), axis=0) x3 = tf.expand_dims(tf.random.normal((40, 10)), axis=0) x4 = tf.expand_dims(tf.random.normal((40, 10)), axis=0) x = tf.concat([x1, x2, x3, x4], axis=0) print(x.shape) # (4, 40, 10)
vq8itlhq2#
我看到有一个正确的答案,但我也提供了另一种方式,通过它层(s),我用我的工作案例:
X = tf.keras.layers.Concatenate(axis=1)([group_1_ShoryuKen_Left, group_1_ShoryuKen_Right])
Working with multiple sequences
2条答案
按热度按时间6uxekuva1#
将
tf.expand_dims
与tf.concat
一起使用:vq8itlhq2#
我看到有一个正确的答案,但我也提供了另一种方式,通过它层(s),我用我的工作案例:
Working with multiple sequences