js_reverse/机器学习/02pytorch基础语法/创建一个空张量.py
2023-07-12 23:26:55 +08:00

5 lines
52 B
Python

import torch
t4 = torch.empty((2, 2, 3))
print(t4)