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