mirror of
https://github.com/luzhisheng/js_reverse.git
synced 2025-04-22 07:08:48 +08:00
12 lines
264 B
Python
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)
|