本文簡要介紹python語言中 torch.nn.MaxUnpool1d
的用法。
用法:
class torch.nn.MaxUnpool1d(kernel_size, stride=None, padding=0)
計算
MaxPool1d
的部分逆。MaxPool1d
不是完全可逆的,因為非最大值會丟失。MaxUnpool1d
將MaxPool1d
的輸出(包括最大值的索引)作為輸入,並計算部分逆,其中所有非最大值都設置為零。注意
MaxPool1d
可以將多個輸入大小映射到相同的輸出大小。因此,反演過程可能會變得模棱兩可。為了適應這種情況,您可以在轉發調用中提供所需的輸出大小作為附加參數output_size
。請參閱下麵的輸入和示例。- 輸入:
input
: 要反轉的輸入張量indices
:MaxPool1d
給出的索引output_size
(可選):目標輸出大小
- 形狀:
輸入: 或 。
輸出: 或 ,其中
或由調用運算符中的
output_size
給出
例子:
>>> 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.]]])
參數:
相關用法
- Python PyTorch MaxUnpool3d用法及代碼示例
- Python PyTorch MaxUnpool2d用法及代碼示例
- Python PyTorch MaxPool1d用法及代碼示例
- Python PyTorch MaxPool3d用法及代碼示例
- Python PyTorch MaxPool2d用法及代碼示例
- Python PyTorch Mapper用法及代碼示例
- Python PyTorch MapKeyZipper用法及代碼示例
- Python PyTorch MarginRankingLoss用法及代碼示例
- Python PyTorch MapDataPipe用法及代碼示例
- Python PyTorch MultiStepLR用法及代碼示例
- Python PyTorch Module.buffers用法及代碼示例
- Python PyTorch Module.register_full_backward_hook用法及代碼示例
- Python PyTorch Module.named_modules用法及代碼示例
- Python PyTorch Module.parameters用法及代碼示例
- Python PyTorch Module.register_forward_hook用法及代碼示例
- Python PyTorch MetaInferGroupedPooledEmbeddingsLookup.state_dict用法及代碼示例
- Python PyTorch Module.named_parameters用法及代碼示例
- Python PyTorch MetaInferGroupedEmbeddingsLookup.named_buffers用法及代碼示例
- Python PyTorch ModuleList用法及代碼示例
- Python PyTorch MultiLabelMarginLoss用法及代碼示例
- Python PyTorch MultiplicativeLR用法及代碼示例
- Python PyTorch MixtureSameFamily用法及代碼示例
- Python PyTorch MultiheadAttention用法及代碼示例
- Python PyTorch MpSerialExecutor用法及代碼示例
- Python PyTorch MultivariateNormal用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.MaxUnpool1d。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。