js_reverse/机器学习/02pytorch基础语法/创建值1填充的张量.py
2023-07-12 23:26:55 +08:00

5 lines
51 B
Python

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