superstarr1420 superstarr1420 19-02-2024 Mathematics contestada 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