Now i have a tensor with shape (3*2, 2) look like
and i want to reshape it with the shape (3, 2*2) with the specific axis like following:
what should i do? The default tf.reshape() will reshape it to
SOLUTION: I found that use slice in tensorflow and tf.concat() can solve the problem.You can slice sub-tensors and concat them which solve my problem exactly


