You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
b = K.batch_dot(o, u_hat_vecs, [2, 3])
ValueError: Can not do batch_dot on inputs with shapes (None, 10, 10, 16) and (None, 10, None, 16) with axes=[2, 3]. x.shape[2] != y.shape[3] (10 != 16)
b = K.batch_dot(o, u_hat_vecs, [2, 3])
ValueError: Can not do batch_dot on inputs with shapes (None, 10, 10, 16) and (None, 10, None, 16) with axes=[2, 3]. x.shape[2] != y.shape[3] (10 != 16)
而且b = K.batch_dot(o, u_hat_vecs, [2, 3])
中b不需要和上一轮的b进行叠加吗