2023-05-26 13:34:28 +08:00

12 lines
264 B
Python

import torch
list_10 = [[[792, 436, 928, 303],
[809, 170, 778, 652],
[967, 520, 419, 184]],
[[402, 754, 327, 979],
[713, 926, 879, 934],
[540, 953, 209, 369]]]
t10 = torch.tensor(list_10)
print(t10*100)