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

溫馨提示×

溫馨提示×

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

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

Pytorch之卷積層的使用詳解

發布時間:2020-10-12 18:21:04 來源:腳本之家 閱讀:159 作者:嘖嘖嘖biubiu 欄目:開發技術

1.簡介(torch.nn下的)

卷積層主要使用的有3類,用于處理不同維度的數據

參數 Parameters:

in_channels(int) – 輸入信號的通道

out_channels(int) – 卷積產生的通道

kerner_size(int or tuple) - 卷積核的尺寸

stride(int or tuple, optional) - 卷積步長

padding (int or tuple, optional)- 輸入的每一條邊補充0的層數

dilation(int or tuple, `optional``) – 卷積核元素之間的間距

groups(int, optional) – 從輸入通道到輸出通道的阻塞連接數

bias(bool, optional) - 如果bias=True,添加偏置

class torch.nn.Conv1d(in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True)

一維卷積層。用于計算ECG等一維數據。

input: (N,C_in,L_in) N為批次,C_in即為in_channels,即一批內輸入一維數據個數,L_in是是一維數據基數

output: (N,C_out,L_out) N為批次,C_in即為out_channels,即一批內輸出一維數據個數,L_out是一維數據基數

class torch.nn.Conv2d(in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True)

二維卷積層。用于計算CT斷層或MR斷層,或二維超聲圖像,自然圖像等二維數據。

self.conv1 = nn.Conv2d( # 1*28*28 -> 32*28*28
      in_channels=1,
      out_channels=32,
      kernel_size=5,
      stride=1,
      padding=2 #padding是需要計算的,padding=(stride-1)/2
    )

input: (N,C_in,H_in,W_in) N為批次,C_in即為in_channels,即一批內輸入二維數據個數,H_in是二維數據行數,W_in是二維數據的列數

output: (N,C_out,H_out,W_out) N為批次,C_out即為out_channels,即一批內輸出二維數據個數,H_out是二維數據行數,W_out是二維數據的列數

con2 = nn.Conv2d(1,16,5,1,2)
# con2(np.empty([1,1,28,28])) 只能接受tensor/variable
con2(torch.Tensor(1,1,28,28))
con2(Variable(torch.Tensor(1,1,28,28)))

class torch.nn.Conv3d(in_channels, out_channels, kernel_size, stride=1, padding=0, dilation=1, groups=1, bias=True)

三維卷積層。用于計算CT或MR等容積數據,視頻數據等三維數據。

input: (N,C_in,D_in,H_in,W_in)

output: (N,C_out,D_out,H_out,W_out)

2.簡介(torch.nn.functional下的)

在torch.nn.functional下也有卷積層,但是和torch.nn下的卷積層的區別在于,functional下的是函數,不是實際的卷積層,而是有卷積層功能的卷積層函數,所以它并不會出現在網絡的圖結構中。

torch.nn.functional.conv1d(input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1)

參數:

- input – 輸入張量的形狀 (minibatch x in_channels x iW)

- weight – 過濾器的形狀 (out_channels, in_channels, kW)

- bias – 可選偏置的形狀 (out_channels)

- stride – 卷積核的步長,默認為1

>>> filters = autograd.Variable(torch.randn(33, 16, 3))
>>> inputs = autograd.Variable(torch.randn(20, 16, 50))
>>> F.conv1d(inputs, filters)

torch.nn.functional.conv2d(input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1)

>>> # With square kernels and equal stride
>>> filters = autograd.Variable(torch.randn(8,4,3,3))
>>> inputs = autograd.Variable(torch.randn(1,4,5,5))
>>> F.conv2d(inputs, filters, padding=1)

torch.nn.functional.conv3d(input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1)

>>> filters = autograd.Variable(torch.randn(33, 16, 3, 3, 3))
>>> inputs = autograd.Variable(torch.randn(20, 16, 50, 10, 20))
>>> F.conv3d(inputs, filters)

以上這篇Pytorch之卷積層的使用詳解就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

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

AI

加查县| 陆河县| 金山区| 遵义县| 乌苏市| 永寿县| 济宁市| 富裕县| 江孜县| 贺州市| 尚志市| 彭州市| 库伦旗| 巧家县| 遂宁市| 屏南县| 静宁县| 呼玛县| 张家界市| 仲巴县| 亚东县| 阿拉尔市| 苏州市| 北宁市| 巴林右旗| 万全县| 曲沃县| 武山县| 凤冈县| 新乡县| 东乌珠穆沁旗| 麻阳| 罗定市| 辉南县| 西畴县| 天长市| 寿宁县| 连州市| 疏附县| 南城县| 林周县|