标签:nal not filter html htm filters lob groups mini
译者:hijkzzz
torch.nn.functional.conv1d(input, weight, bias=None, stride=1, padding=0, dilation=1, groups=1) → Tensor
对由多个输入平面组成的输入信号进行一维卷积.
有关详细信息和输出形状, 请参见Conv1d
.
注意
在某些情况下, 当使用CUDA后端与CuDNN时, 该操作符可能会选择不确定性算法来提高性能. 如果这不是您希望的, 您可以通过设置torch.backends.cudn .deterministic = True
来尝试使操作具有确定性(可能会以性能为代价). 请参阅关于 Reproducibility 了解背景.
参数:
None
(sW,)
. 默认值: 1(padW, )
. 默认值: 0(dW,)
. 默认值: 1例子:
>>> filters = torch.randn(33, 16, 3)
>>> inputs = torch.randn(20, 16, 50)
>>> F.conv1d(inputs, filters)
PyTorch 1.0 中文文档:torch.nn.functional
标签:nal not filter html htm filters lob groups mini
原文地址:https://www.cnblogs.com/wizardforcel/p/10358937.html