I AM UNABLE TO RESOLVE THIS FAILURE
Hi @ADITYA_AGARWAL ,
When calling tf.matmul(), the second parameter, k, needs to be transposed. Here is how to do it:
tf.matmul(q, k, transpose_b = True)
thank u sir i got it now my code is working