How do you calculate the hidden vectors with x₁...xₙ inputs and w₁₁...wₙₙ?
a) torch.matmul(x, w.transpose()) + b
b) torch.matmul(w, x) + b
c) torch.dot(w, x) + b
d) torch.mm(x, w) + b