The question says it all. I want to get a 2-D torch.Tensor with size [a,b] filled with values from a uniform distribution (in range [r1,r2]
torch.Tensor
[a,b]
[r1,r2]
For those who are frustratingly bashing their keyboard yelling "why isn't this working." as I was... note the underscore behind the word uniform.
torch.FloatTensor(a, b).uniform_(r1, r2) ^ here