Currently, ```python torch.FloatTensor(3, 4).normal_().sum(0) ``` returns a vector of shape (1, 4), but shouldn't the dimension over which we sum / mean / etc disappear?
Currently,
returns a vector of shape (1, 4), but shouldn't the dimension over which we sum / mean / etc disappear?