对PyTorch torch.stack的实例讲解

时间:2022-09-07 00:22:44

不是concat的意思

?
1
2
3
4
5
6
7
8
import torch
a = torch.ones([1,2])
b = torch.ones([1,2])
torch.stack([a,b],1)
(0 ,.,.) =
 1 1
 1 1
[torch.FloatTensor of size 1x2x2]

以上这篇对PyTorch torch.stack的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/guotong1988/article/details/78717448