亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Pytorch中的torch.gather()函數怎么用

發布時間:2021-11-15 09:12:03 來源:億速云 閱讀:192 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關Pytorch中的torch.gather()函數怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

參數說明

以官方說明為例,gather()函數需要三個參數,輸入input,維度dim,以及索引index

input必須為Tensor類型

dim為int類型,代表從哪個維度進行索引

index為LongTensor類型

舉例說明

input=torch.tensor([[1,2,3],[4,5,6]]) #作為輸入
 
index1=torch.tensor([[0,1,1],[0,1,1]]) #作為索引矩陣
 
# dim=0時,按列進行索引
print (torch.gather(input,dim=0,index=index1))
 
# dim=1時,按行進行索引
print (torch.gather(input,dim=1,index=index1))

 結果如下圖所示:

# 按列進行索引
tensor([[1, 5, 6],
        [4, 2, 6]])
 
# 按行進行索引
tensor([[1, 2, 2],
        [5, 4, 5]])

畫圖說明 

Pytorch中的torch.gather()函數怎么用

Pytorch中的torch.gather()函數怎么用

官方文檔

def gather(self, input, dim, index, *args, **kwargs): 
        
        For a 3-D tensor the output is specified by::
        
            out[i][j][k] = input[index[i][j][k]][j][k]  # if dim == 0
            out[i][j][k] = input[i][index[i][j][k]][k]  # if dim == 1
            out[i][j][k] = input[i][j][index[i][j][k]]  # if dim == 2        
 
        Args:
            input (Tensor): the source tensor
            dim (int): the axis along which to index
            index (LongTensor): the indices of elements to gather     
      
        Example::
        
            >>> t = torch.tensor([[1, 2], [3, 4]])
            >>> torch.gather(t, 1, torch.tensor([[0, 0], [1, 0]]))
            tensor([[ 1,  1],
                    [ 4,  3]])

關于“Pytorch中的torch.gather()函數怎么用”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宜宾市| 灵川县| 朝阳区| 三台县| 噶尔县| 景德镇市| 分宜县| 高密市| 崇义县| 临海市| 互助| 万全县| 临潭县| 高要市| 南雄市| 岚皋县| 岱山县| 丹阳市| 东至县| 平塘县| 常德市| 旺苍县| 兴义市| 舒兰市| 墨江| 扎赉特旗| 万宁市| 安龙县| 湘潭县| 临城县| 陇西县| 茌平县| 海城市| 略阳县| 普兰店市| 塘沽区| 岳阳市| 澜沧| 临江市| 曲麻莱县| 齐齐哈尔市|