Hello,
I am a beginner to neural networks. Can you explain why
batch_input_ = tf.transpose(batch_input, perm=[2, 0, 1])
X = tf.transpose(batch_input_) ?
I know this is equivalent to
X = tf.transpose(batch_input, perm = [1,0,2]
but why do we need to reshape batch_input size and can you explain more about batch input size?
Thank you