I am going through Pytorch and want to create a random tensor of shape 5X3 in the interval [3,7)
torch.rand(5,3) will return a random tensor of shape 5 X 3, however, I could not figure to set the given interval.
Please guide.
You can map U ~ [0, 1] to U ~ [a, b] with u -> (a - b)*u + b:
U ~ [0, 1]
U ~ [a, b]
u -> (a - b)*u + b
(a - b)*torch.rand(5, 3) + b
2.1m questions
2.1m answers
60 comments
57.0k users