提交 2e874208 编写于 作者: M Megvii Engine Team

fix(module): fix docs in normalization

GitOrigin-RevId: 326234c35a9c985c2cf75e3b1ee7953237495fb5
上级 638ab52f
......@@ -14,7 +14,7 @@ from megengine import Parameter
class GroupNorm(M.Module):
"""
Simple implementation of GroupNorm.
Simple implementation of GroupNorm. Only support 4d tensor now.
Reference: https://arxiv.org/pdf/1803.08494.pdf.
"""
......@@ -63,7 +63,7 @@ class GroupNorm(M.Module):
class InstanceNorm(M.Module):
"""
simple implementation of InstanceNorm.
Simple implementation of InstanceNorm. Only support 4d tensor now.
Reference: https://arxiv.org/abs/1607.08022.
Note that InstanceNorm equals using GroupNome with num_groups=num_channels.
"""
......@@ -107,7 +107,7 @@ class InstanceNorm(M.Module):
class LayerNorm(M.Module):
"""
simple implementation of LayerNorm.
Simple implementation of LayerNorm. Only support 4d tensor now.
Reference: https://arxiv.org/pdf/1803.08494.pdf.
Note that LayerNorm equals using GroupNorm with num_groups=1.
"""
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册