MaxUnpool1d#
- class torch.nn.modules.pooling.MaxUnpool1d(kernel_size, stride=None, padding=0)[源代码]#
计算
MaxPool1d
的部分逆运算。MaxPool1d
不是完全可逆的,因为非最大值会被丢失。要计算
MaxPool1d
的逆运算,需要提供MaxPool1d
的输出(包括最大值的索引),并计算一个部分逆运算,其中所有非最大值都设置为零。注意
当输入索引存在重复值时,此操作可能表现出非确定性。更多信息请参阅 pytorch/pytorch#80827 和 可复现性。
注意
MaxPool1d
可以将多种输入大小映射到相同的输出大小。因此,逆运算可能会出现歧义。为了解决这个问题,您可以在前向传播调用中提供所需的输出大小作为附加参数output_size
。请参阅下面的输入和示例。- 参数
- 输入
input: the input Tensor to invert
indices: 由
MaxPool1d
给出的索引output_size (optional): the targeted output size
- 形状
输入: 或 。
输出: 或 ,其中
or as given by
output_size
in the call operator
示例
>>> pool = nn.MaxPool1d(2, stride=2, return_indices=True) >>> unpool = nn.MaxUnpool1d(2, stride=2) >>> input = torch.tensor([[[1., 2, 3, 4, 5, 6, 7, 8]]]) >>> output, indices = pool(input) >>> unpool(output, indices) tensor([[[ 0., 2., 0., 4., 0., 6., 0., 8.]]]) >>> # Example showcasing the use of output_size >>> input = torch.tensor([[[1., 2, 3, 4, 5, 6, 7, 8, 9]]]) >>> output, indices = pool(input) >>> unpool(output, indices, output_size=input.size()) tensor([[[ 0., 2., 0., 4., 0., 6., 0., 8., 0.]]]) >>> unpool(output, indices) tensor([[[ 0., 2., 0., 4., 0., 6., 0., 8.]]])