c = torch.tensor([10], dtype=torch.float32) # As 1-D Vector with specified Data-type ... Torch c = torch.normal(mean=0, std=1, size=(3, 3)) print(c) print()
確定! 回上一頁