23  Pytorch Intro

import torch
x = torch.rand(5, 3)
print(x)
tensor([[0.1437, 0.3597, 0.1040],
        [0.8549, 0.2542, 0.7410],
        [0.5000, 0.3568, 0.9514],
        [0.3741, 0.6238, 0.1475],
        [0.3856, 0.6838, 0.5198]])