pytorch: torch.cat与torch.chunk的使用, 反转函数torch.flip
1.torch.chunk(tensor,chunk_num,dim)与torch.cat()结果相反,它是将tensor按dim(行或列)平均分割成chunk_num个tensor块,返回的是一个元组。importtorcha=torch.Tensor([[1,2,4]])b=torch.Tensor([[4,5,7],[3,9,8],[9,6,7]])c=torch.cat((a,b),dim