赞
踩
可以用torch.cat方法和torch.stack方法将多个张量合并,可以用torch.split方法把一个张量分割成多个张量。
torch.cat和torch.stack有略微的区别,torch.cat是连接,不会增加维度,而torch.stack是堆叠,会增加维度。
a = torch.tensor([[1, 2],[3,4]])
b = torch.tensor([[5,6],[7,8]])
c = torch.tensor
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。