深度学习Pytorch框架Tensor张量

人工智能 深度学习
本文主要介绍了Tensor的裁剪运算、索引与数据筛选、组合/拼接、切片、变形操作、填充操作和Tensor的频谱操作(傅里叶变换)。

[[433522]]

 1 Tensor的裁剪运算

  •  对Tensor中的元素进行范围过滤
  •  常用于梯度裁剪(gradient clipping),即在发生梯度离散或者梯度爆炸时对梯度的处理
  •  torch.clamp(input, min, max, out=None) → Tensor:将输入input张量每个元素的夹紧到区间 [min,max],并返回结果到一个新张量。

2 Tensor的索引与数据筛选

  •  torch.where(codition,x,y):按照条件从x和y中选出满足条件的元素组成新的tensor,输入参数condition:条件限制,如果满足条件,则选择a,否则选择b作为输出。
  •  torch.gather(input,dim,index,out=None):在指定维度上按照索引赋值输出tensor
  •  torch.inex_select(input,dim,index,out=None):按照指定索引赋值输出tensor
  •  torch.masked_select(input,mask,out=None):按照mask输出tensor,输出为向量
  •  torch.take(input,indices):将输入看成1D-tensor,按照索引得到输出tensor
  •  torch.nonzero(input,out=None):输出非0元素的坐标 
  1. import torch  
  2. #torch.where  
  3. a = torch.rand(4, 4)  
  4. b = torch.rand(4, 4)  
  5. print(a)  
  6. print(b)  
  7. out = torch.where(a > 0.5, a, b)  
  8. print(out) 

 

  1. print("torch.index_select")  
  2. a = torch.rand(4, 4)  
  3. print(a)  
  4. out = torch.index_select(a, dim=0 
  5.                    index=torch.tensor([0, 3, 2]))  
  6. #dim=0按列,index取的是行  
  7. print(out, out.shape) 

 

  1. print("torch.gather")  
  2. a = torch.linspace(1, 16, 16).view(4, 4)  
  3. print(a)  
  4. out = torch.gather(a, dim=0 
  5.              index=torch.tensor([[0, 1, 1, 1],  
  6.                                  [0, 1, 2, 2],  
  7.                                  [0, 1, 3, 3]]))  
  8. print(out)  
  9. print(out.shape)  
  10. #注:从0开始,第0列的第0个,第一列的第1个,第二列的第1个,第三列的第1个,,,以此类推  
  11. #dim=0, out[i, j, k] = input[index[i, j, k], j, k]  
  12. #dim=1, out[i, j, k] = input[i, index[i, j, k], k] 
  13. #dim=2, out[i, j, k] = input[i, j, index[i, j, k]] 

 

  1. print("torch.masked_index")  
  2. a = torch.linspace(1, 16, 16).view(4, 4)  
  3. mask = torch.gt(a, 8)  
  4. print(a)  
  5. print(mask)  
  6. out = torch.masked_select(a, mask)  
  7. print(out) 

 

  1. print("torch.take")  
  2. a = torch.linspace(1, 16, 16).view(4, 4)  
  3. b = torch.take(a, index=torch.tensor([0, 15, 13, 10]))  
  4. print(b) 

 

  1. #torch.nonzero  
  2. print("torch.take")  
  3. a = torch.tensor([[0, 1, 2, 0], [2, 3, 0, 1]])  
  4. out = torch.nonzero(a)  
  5. print(out)  
  6. #稀疏表示 

3 Tensor的组合/拼接

  •  torch.cat(seq,dim=0,out=None):按照已经存在的维度进行拼接
  •  torch.stack(seq,dim=0,out=None):沿着一个新维度对输入张量序列进行连接。序列中所有的张量都应该为相同形状。 
  1. print("torch.stack")  
  2. a = torch.linspace(1, 6, 6).view(2, 3)  
  3. b = torch.linspace(7, 12, 6).view(2, 3)  
  4. print(a, b)  
  5. out = torch.stack((a, b), dim=2 
  6. print(out)  
  7. print(out.shape)  
  8. print(out[:, :, 0])  
  9. print(out[:, :, 1]) 

4 Tensor的切片

  •  torch.chunk(tensor,chunks,dim=0):按照某个维度平均分块(最后一个可能小于平均值)
  •  torch.split(tensor,split_size_or_sections,dim=0):按照某个维度依照第二个参数给出的list或者int进行分割tensor

5 Tensor的变形操作

  •  torch().reshape(input,shape)
  •  torch().t(input):只针对2D tensor转置
  •  torch().transpose(input,dim0,dim1):交换两个维度
  •  torch().squeeze(input,dim=None,out=None):去除那些维度大小为1的维度
  •  torch().unbind(tensor,dim=0):去除某个维度
  •  torch().unsqueeze(input,dim,out=None):在指定位置添加维度,dim=-1在最后添加
  •  torch().flip(input,dims):按照给定维度翻转张量
  •  torch().rot90(input,k,dims):按照指定维度和旋转次数进行张量旋转 
  1. import torch  
  2. a = torch.rand(2, 3)  
  3. print(a)  
  4. out = torch.reshape(a, (3, 2))  
  5. print(out) 

 

  1. print(a)  
  2. print(torch.flip(a, dims=[2, 1]))  
  3. print(a)  
  4. print(a.shape)  
  5. out = torch.rot90(a, -1, dims=[0, 2]) #顺时针旋转90°    
  6. print(out)  
  7. print(out.shape) 

6 Tensor的填充操作

  •  torch.full((2,3),3.14)

7 Tensor的频谱操作(傅里叶变换)

 

 

责任编辑:庞桂玉 来源: 深度学习这件小事
相关推荐

2024-03-01 20:55:40

Pytorch张量Tensor

2022-11-25 07:35:57

PyTorchPython学习框架

2018-07-03 15:59:14

KerasPyTorch深度学习

2024-01-05 17:15:21

pytorchtensor深度学习

2017-03-01 09:05:27

PyTorchPython框架

2019-09-01 19:19:04

TensorFlowPyTorch深度学习

2017-03-06 15:25:47

PyTorchMxnet深度学习

2017-09-05 10:20:30

PyTorchTensorPython

2021-11-27 05:03:09

框架深度学习

2017-01-19 16:21:12

PyTorch软件深度学习

2019-06-26 05:29:44

深度学习KerasPyTorch

2022-01-06 10:04:17

深度学习编程人工智能

2024-10-22 15:51:42

PyTorch张量

2019-03-06 09:55:54

Python 开发编程语言

2019-11-19 09:58:16

机器学习人工智能框架

2022-09-21 10:40:57

TensorFlowPyTorchJAX

2016-12-15 09:44:31

框架Caffe源码

2020-04-22 14:00:50

PyTorchTensorFlow深度学习

2017-05-31 08:45:03

2023-12-18 10:41:28

深度学习NumPyPyTorch
点赞
收藏

51CTO技术栈公众号