91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Pytorch中Tensor基本數學運算的示例分析

發布時間:2021-08-17 11:30:52 來源:億速云 閱讀:139 作者:小新 欄目:開發技術

這篇文章主要介紹Pytorch中Tensor基本數學運算的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

1. 加法運算

示例代碼:

import torch
 
# 這兩個Tensor加減乘除會對b自動進行Broadcasting
a = torch.rand(3, 4)
b = torch.rand(4)
 
c1 = a + b
c2 = torch.add(a, b)
print(c1.shape, c2.shape)
print(torch.all(torch.eq(c1, c2)))

輸出結果:

torch.Size([3, 4]) torch.Size([3, 4])
tensor(1, dtype=torch.uint8)

2. 減法運算

示例代碼:

a = torch.rand(3, 4)
b = torch.rand(4)
 
c1 = a - b
c2 = torch.sub(a, b)
print(c1.shape, c2.shape)
print(torch.all(torch.eq(c1, c2)))

輸出結果:

torch.Size([3, 4]) torch.Size([3, 4])
tensor(1, dtype=torch.uint8)

3. 哈達瑪積(element wise,對應元素相乘)

示例代碼:

c1 = a * b
c2 = torch.mul(a, b)
print(c1.shape, c2.shape)
print(torch.all(torch.eq(c1, c2)))

輸出結果:

torch.Size([3, 4]) torch.Size([3, 4])
tensor(1, dtype=torch.uint8)

4. 除法運算

示例代碼:

c1 = a / b
c2 = torch.div(a, b)
print(c1.shape, c2.shape)
print(torch.all(torch.eq(c1, c2)))

輸出結果:

torch.Size([3, 4]) torch.Size([3, 4])
tensor(1, dtype=torch.uint8)

5. 矩陣乘法

(1)二維矩陣相乘

二維矩陣乘法運算操作包括torch.mm()、torch.matmul()、@,

示例代碼:

import torch
 
a = torch.ones(2, 1)
b = torch.ones(1, 2)
print(torch.mm(a, b).shape)
print(torch.matmul(a, b).shape)
print((a @ b).shape)

輸出結果:

torch.Size([2, 2])
torch.Size([2, 2])
torch.Size([2, 2])

(2)多維矩陣相乘

對于高維的Tensor(dim>2),定義其矩陣乘法僅在最后的兩個維度上,要求前面的維度必須保持一致,就像矩陣的索引一樣并且運算操只有torch.matmul()。

示例代碼:

c = torch.rand(4, 3, 28, 64)
d = torch.rand(4, 3, 64, 32)
print(torch.matmul(c, d).shape)

輸出結果:

torch.Size([4, 3, 28, 32])

注意,在這種情形下的矩陣相乘,前面的"矩陣索引維度"如果符合Broadcasting機制,也會自動做廣播,然后相乘。

示例代碼:

c = torch.rand(4, 3, 28, 64)
d = torch.rand(4, 1, 64, 32)
print(torch.matmul(c, d).shape)

輸出結果:

torch.Size([4, 3, 28, 32])

6. 冪運算

示例代碼:

import torch
 
a = torch.full([2, 2], 3)
 
b = a.pow(2) # 也可以a**2
print(b)

輸出結果:

tensor([[9., 9.],
    [9., 9.]])

7. 開方運算

示例代碼:

c = b.sqrt() # 也可以a**(0.5)
print(c)
 
d = b.rsqrt() # 平方根的倒數
print(d)

輸出結果:

tensor([[3., 3.],
    [3., 3.]])
tensor([[0.3333, 0.3333],
    [0.3333, 0.3333]])

8.指數與對數運算

注意log是以自然對數為底數的,以2為底的用log2,以10為底的用log10

示例代碼:

import torch
 
a = torch.exp(torch.ones(2, 2)) # 得到2*2的全是e的Tensor
print(a)
print(torch.log(a)) # 取自然對數

輸出結果:

tensor([[2.7183, 2.7183],
    [2.7183, 2.7183]])
tensor([[1., 1.],
    [1., 1.]])

9.近似值運算

示例代碼:

import torch
 
a = torch.tensor(3.14)
print(a.floor(), a.ceil(), a.trunc(), a.frac()) # 取下,取上,取整數,取小數
b = torch.tensor(3.49)
c = torch.tensor(3.5)
print(b.round(), c.round()) # 四舍五入

輸出結果:

tensor(3.) tensor(4.) tensor(3.) tensor(0.1400)
tensor(3.) tensor(4.)

10. 裁剪運算

即對Tensor中的元素進行范圍過濾,不符合條件的可以把它變換到范圍內部(邊界)上,常用于梯度裁剪(gradient clipping),即在發生梯度離散或者梯度爆炸時對梯度的處理,實際使用時可以查看梯度的(L2范數)模來看看需不需要做處理:w.grad.norm(2)。

示例代碼:

import torch
 
grad = torch.rand(2, 3) * 15 # 0~15隨機生成
print(grad.max(), grad.min(), grad.median()) # 最大值最小值平均值
 
print(grad)
print(grad.clamp(10)) # 最小是10,小于10的都變成10
print(grad.clamp(3, 10)) # 最小是3,小于3的都變成3;最大是10,大于10的都變成10

輸出結果:

tensor(14.7400) tensor(1.8522) tensor(10.5734)
tensor([[ 1.8522, 14.7400, 8.2445],
    [13.5520, 10.5734, 12.9756]])
tensor([[10.0000, 14.7400, 10.0000],
    [13.5520, 10.5734, 12.9756]])
tensor([[ 3.0000, 10.0000, 8.2445],
    [10.0000, 10.0000, 10.0000]])

以上是“Pytorch中Tensor基本數學運算的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

张家口市| 金坛市| 吴堡县| 天柱县| 浮梁县| 南丰县| 平阳县| 枣强县| 大新县| 藁城市| 宜都市| 马龙县| 林西县| 永嘉县| 禹城市| 远安县| 班玛县| 尚义县| 满城县| 体育| 朝阳区| 玉屏| 楚雄市| 武宣县| 浮梁县| 双江| 五家渠市| 贵定县| 兴国县| 隆化县| 威远县| 莆田市| 丁青县| 洞头县| 平江县| 塔河县| 淮阳县| 藁城市| 余江县| 分宜县| 老河口市|