本文簡要介紹python語言中 torch.nn.PixelShuffle
的用法。
用法:
class torch.nn.PixelShuffle(upscale_factor)
upscale_factor(int) -增加空間分辨率的因子
將形狀為 的張量中的元素重新排列為形狀為 的張量,其中 r 是一個放大因子。
這對於以 的步幅實現高效的 sub-pixel 卷積很有用。
見論文:使用高效 Sub-Pixel 卷積神經網絡的實時單圖像和視頻超分辨率通過石等。 al (2016) 了解更多詳情。
- 形狀:
輸入: ,其中 * 是零個或多個批次維度
輸出: ,其中
例子:
>>> pixel_shuffle = nn.PixelShuffle(3) >>> input = torch.randn(1, 9, 4, 4) >>> output = pixel_shuffle(input) >>> print(output.size()) torch.Size([1, 1, 12, 12])
參數:
相關用法
- Python PyTorch PixelUnshuffle用法及代碼示例
- Python PyTorch Pipe用法及代碼示例
- Python PyTorch PitchShift用法及代碼示例
- Python PyTorch PackageImporter.id用法及代碼示例
- Python PyTorch Proxy用法及代碼示例
- Python PyTorch PoissonNLLLoss用法及代碼示例
- Python PyTorch ParagraphAggregator用法及代碼示例
- Python PyTorch PooledEmbeddingsAllToAll用法及代碼示例
- Python PyTorch PackageExporter.register_extern_hook用法及代碼示例
- Python PyTorch Poisson用法及代碼示例
- Python PyTorch Perceptron用法及代碼示例
- Python PyTorch ParallelReadConcat用法及代碼示例
- Python PyTorch ParameterList用法及代碼示例
- Python PyTorch PairwiseDistance用法及代碼示例
- Python PyTorch ParquetDataFrameLoader用法及代碼示例
- Python PyTorch PackageExporter.register_intern_hook用法及代碼示例
- Python PyTorch ParameterDict用法及代碼示例
- Python PyTorch Pareto用法及代碼示例
- Python PyTorch PackageExporter.close用法及代碼示例
- Python PyTorch PooledEmbeddingsReduceScatter用法及代碼示例
- Python PyTorch PackageExporter.register_mock_hook用法及代碼示例
- Python PyTorch PReLU用法及代碼示例
- Python PyTorch frexp用法及代碼示例
- Python PyTorch jvp用法及代碼示例
- Python PyTorch cholesky用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.PixelShuffle。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。