當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python PyTorch AdaptiveMaxPool3d用法及代碼示例


本文簡要介紹python語言中 torch.nn.AdaptiveMaxPool3d 的用法。

用法:

class torch.nn.AdaptiveMaxPool3d(output_size, return_indices=False)

參數

  • output_size- 形式的圖像的目標輸出大小。可以是元組 或單個 用於多維數據集 可以是 intNone ,這意味著大小將與輸入的大小相同。

  • return_indices-如果 True ,將返回索引以及輸出。用於傳遞給 nn.MaxUnpool3d。默認值:False

在由多個輸入平麵組成的輸入信號上應用 3D 自適應最大池化。

對於任何輸入大小,輸出大小為 。輸出特征的數量等於輸入平麵的數量。

形狀:
  • 輸入:

  • 輸出: ,其中

例子

>>> # target output size of 5x7x9
>>> m = nn.AdaptiveMaxPool3d((5,7,9))
>>> input = torch.randn(1, 64, 8, 9, 10)
>>> output = m(input)
>>> # target output size of 7x7x7 (cube)
>>> m = nn.AdaptiveMaxPool3d(7)
>>> input = torch.randn(1, 64, 10, 9, 8)
>>> output = m(input)
>>> # target output size of 7x9x8
>>> m = nn.AdaptiveMaxPool3d((7, None, None))
>>> input = torch.randn(1, 64, 10, 9, 8)
>>> output = m(input)

相關用法


注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.AdaptiveMaxPool3d。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。