How do you reshape a vector 'weights' that is 1 row 5 columns to 5 rows 1 column?
a) weights.reshape(5, 1)
b) torch.reshape(weights, (5, 1))
c) weights.resize(5, 1)
d) torch.rearrange(weights, "(5,1)->(1,5)")