rand It returns a tensor filled with Random floats from a uniform distribution on the interval [0, 1]. Uniform distribution on [0, 1] means : Every number between 0 and 1 has an equal probability of being selected. It doesn't mean the numbers will be evenly spaced or look "uniform" when you look at a few samples. For example, torch.rand(4)=> tensor([0.7529, 0.8579, 0.6870, 0.0051]) Each of these..