import torch a = torch.randn(2, 3) a = torch.unsqueeze(a, ... a)) b = torch.hstack((a, a)) d = torch.dstack((a, a)) print(a) print(b) ...
確定! 回上一頁