js_reverse/ayf_ocr/02pytorch基础语法/创建一个空张量.py
2023-05-26 13:34:28 +08:00

5 lines
52 B
Python

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