pytorch人工智能之torch.gather算子用法示例
一、用法:
torch.gather 算子用於返回給定索引/下標的 Tensor 元素,在 pytorch 官網文檔中的定義如下:
torch.gather( input, dim, index, *, sparse_grad=False, out=None) → Tensor
其用法等價於:
input.gather( dim, index, *, sparse_grad=False, out=None) → Tensor
其中,input 是目標 Tensor ,即被搜索的 Tensor ;dim 是搜索維度(也是 Tensor ),index 是索引。
返回值類型:Tensor
二、代碼示例:
概念看不懂沒關系,一看代碼便知用法。
a = torch.tensor([1, 5, 3, 6, 8]) b = torch.tensor([3]) # 索引為3 c = a.gather(0, b) # 輸出a中第0維索引是3的元素:6 # 等價於 c=torch.gather(a,0,b) print(c) # tensor([6])
a = torch.tensor([[1.3, 2, 3, 4.5, 5], [2.0, 3, 0.3, 4.1, 2], [6, 7, 8, 9, 2], [10, 5, 0, 6, 8]]) b = torch.tensor([[1], [2], [3], [4]]) c = torch.gather(a, 1, b) # 輸出a中第1維索引分別是1,2,3,4的元素:2,0.3,9,8 print(c) # tensor([[2.0000],[0.3000],[9.0000],[8.0000]])
以上就是pytorch人工智能之torch.gather算子用法示例的詳細內容,更多關於pytorch算子torch.gather的資料請關註WalkonNet其它相關文章!
推薦閱讀:
- 解析Pytorch中的torch.gather()函數
- PyTorch 如何自動計算梯度
- PyTorch梯度下降反向傳播
- PyTorch一小時掌握之基本操作篇
- pytorch_detach 切斷網絡反傳方式