您可以使用 tf.squeeze :
tf.squeeze(your_tensor, axis=1)
该 reshape 方法就是为了这个目的。
reshape
尝试 reshape(you_tensor, [-1, 25]) 。
reshape(you_tensor, [-1, 25])