溫馨提示×

溫馨提示×

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

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

PyTorch上的常用數(shù)據(jù)類型有哪些

發(fā)布時間:2021-05-17 14:51:12 來源:億速云 閱讀:178 作者:小新 欄目:開發(fā)技術

這篇文章將為大家詳細講解有關PyTorch上的常用數(shù)據(jù)類型有哪些,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

PyTorch上的常用數(shù)據(jù)類型如下

Data typedtypeCPU tensorGPU tensorSize/bytes
32-bit floatingtorch.float32 or torch.floattorch.FloatTensortorch.cuda.FloatTensor4
64-bit floatingtorch.float64 or torch.doubletorch.DoubleTensortorch.cuda.DoubleTensor8
16-bit floatingtorch.float16or torch.halftorch.HalfTensortorch.cuda.HalfTensor-
8-bit integer (unsigned)torch.uint8torch.ByteTensortorch.cuda.ByteTensor1
8-bit integer (signed)torch.int8torch.CharTensortorch.cuda.CharTensor-
16-bit integer (signed)torch.int16or torch.shorttorch.ShortTensortorch.cuda.ShortTensor2
32-bit integer (signed)torch.int32 or torch.inttorch.IntTensortorch.cuda.IntTensor4
64-bit integer (signed)torch.int64 or torch.longtorch.LongTensortorch.cuda.LongTensor8

以上PyTorch中的數(shù)據(jù)類型和numpy中的相對應,占用字節(jié)大小也是一樣的

補充:pytorch tensor比較大小 數(shù)據(jù)類型要注意

如下

a = torch.tensor([[0, 0], [0, 0]])
print(a>=0.5)

輸出

tensor([[1, 1],

[1, 1]], dtype=torch.uint8)

結果明顯不對, 分析原因是因為, a是long類型, 而0.5是float. 0.5會被轉化為 long, 變?yōu)?. 因此結果會出錯, 做出如下修改就可以得到正確答案

正確用法:

a = torch.tensor([[0, 0], [0, 0]]).float()
print(a>=0.5)

pytorch的優(yōu)點

1.PyTorch是相當簡潔且高效快速的框架;2.設計追求最少的封裝;3.設計符合人類思維,它讓用戶盡可能地專注于實現(xiàn)自己的想法;4.與google的Tensorflow類似,F(xiàn)AIR的支持足以確保PyTorch獲得持續(xù)的開發(fā)更新;5.PyTorch作者親自維護的論壇 供用戶交流和求教問題6.入門簡單

關于“PyTorch上的常用數(shù)據(jù)類型有哪些”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

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

AI