Suppose I have two matrices each one with a shape of [20 256]
and when I want to multiply them I use the following
tf.matmul(v1, v2, transpose_b=True)
Now what if I have three matrices each with shape of [20 256]
Can I multiply it as
tf.matmul(v1, v2, v3, transpose_b=True)