For example I have 2 tensors A and B both with dimension (None, HWC), when I use
tf.matmul(tf.transpose(A),B)
The result dimension will be (HWC,HWC), this is correct but I want to keep the None dimension so it can be(None, HWC, HWC). Is there anyway to achieve this?
Maybe try something like this: