mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-22 22:03:27 +08:00
8 lines
163 B
Python
8 lines
163 B
Python
import torch
|
|
|
|
t5 = torch.randint(low=100, high=1000, size=(2, 3, 4))
|
|
print(t5.numpy())
|
|
|
|
t6 = torch.tensor([41, 96, 88, 145], dtype=torch.int32)
|
|
print(t6.tolist())
|