利用pytorch进行简单的卷积操作

 
input – input tensor of shape (/text{minibatch} , /text{in/_channels} , iH , iW)(minibatch,in_channels,iH,iW) weight – filters of shape (/text{out/_channels} , /frac{/text{in/_channels}}{/text{groups}} , kH , kW)(out_channels,groupsin_channels​,kH,kW)  进行简单的卷积操作的使用:stride为1和2的时候他的输出是不一样的。 import torch
from torch import nn
import torch.nn.functional as F
input = torch.tensor([[1,2,0,3,1],
[0,1,2,3,1],
[1,2,1,0,0],

利用pytorch进行简单的卷积操作最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/28867.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>