dpchampion8689 dpchampion8689 19-02-2024 Mathematics contestada How do you matrix multiply in Torch 'feats' and 'weights', and add a bias? a) torch.matmul(feats, weights) + bias b) torch.dot(feats, weights) + bias c) torch.mm(feats, weights) + bias d) torch.multiply(feats, weights) + bias