本文簡要介紹python語言中 torch.nn.GroupNorm
的用法。
用法:
class torch.nn.GroupNorm(num_groups, num_channels, eps=1e-05, affine=True, device=None, dtype=None)
如論文 Group Normalization 中所述,對小批量輸入應用組規範化
輸入通道分為
num_groups
組,每個組包含num_channels / num_groups
通道。分別計算每組的平均值和標準差。 和 是大小為num_channels
的可學習的每通道仿射變換參數向量,如果affine
是True
。標準差是通過偏置估計器計算的,相當於torch.var(input, unbiased=False)
。該層使用從訓練和評估模式中的輸入數據計算的統計數據。
- 形狀:
輸入: 其中
輸出: (與輸入的形狀相同)
例子:
>>> input = torch.randn(20, 6, 10, 10) >>> # Separate 6 channels into 3 groups >>> m = nn.GroupNorm(3, 6) >>> # Separate 6 channels into 6 groups (equivalent with InstanceNorm) >>> m = nn.GroupNorm(6, 6) >>> # Put all 6 channels into a single group (equivalent with LayerNorm) >>> m = nn.GroupNorm(1, 6) >>> # Activating the module >>> output = m(input)
參數:
相關用法
- Python PyTorch GroupedPositionWeightedModule.named_parameters用法及代碼示例
- Python PyTorch GroupedPooledEmbeddingsLookup.named_buffers用法及代碼示例
- Python PyTorch GroupedPositionWeightedModule.named_buffers用法及代碼示例
- Python PyTorch GroupedPooledEmbeddingsLookup.state_dict用法及代碼示例
- Python PyTorch GroupedPooledEmbeddingsLookup.named_parameters用法及代碼示例
- Python PyTorch GroupedPositionWeightedModule.state_dict用法及代碼示例
- Python PyTorch GroupedEmbeddingsLookup.state_dict用法及代碼示例
- Python PyTorch GroupedEmbeddingsLookup.named_parameters用法及代碼示例
- Python PyTorch GroupedEmbeddingsLookup.named_buffers用法及代碼示例
- Python PyTorch Grouper用法及代碼示例
- Python PyTorch Graph.eliminate_dead_code用法及代碼示例
- Python PyTorch Graph.inserting_before用法及代碼示例
- Python PyTorch GradScaler.unscale_用法及代碼示例
- Python PyTorch Graph.inserting_after用法及代碼示例
- Python PyTorch Graph用法及代碼示例
- Python PyTorch GriffinLim用法及代碼示例
- Python PyTorch Graph.node_copy用法及代碼示例
- Python PyTorch GreedyPerfPartitioner.partition用法及代碼示例
- Python PyTorch Generator.set_state用法及代碼示例
- Python PyTorch Generator.seed用法及代碼示例
- Python PyTorch GLU用法及代碼示例
- Python PyTorch GDriveReader用法及代碼示例
- Python PyTorch GRUCell用法及代碼示例
- Python PyTorch Gumbel用法及代碼示例
- Python PyTorch Generator.get_state用法及代碼示例
注:本文由純淨天空篩選整理自pytorch.org大神的英文原創作品 torch.nn.GroupNorm。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。