Can anyone help me in this.? I am getting below error. I use Google Colab. How to Solve this error.?
size mismatch, m1: [64 x 100], m2: [784 x 128] at
All you have to care is b=c and you are done:
b=c
m1: [a x b], m2: [c x d]
m1 is [a x b] which is [batch size x in features]
m1
[a x b]
[batch size x in features]
m2 is [c x d] which is [in features x out features]
m2
[c x d]
[in features x out features]