diff --git a/imperative/python/megengine/module/normalization.py b/imperative/python/megengine/module/normalization.py index bdd90f7a16235b0982515eb05b4273ece89d5ddf..8b28eba853dbf33d20db46c4a4907e5543ef59df 100644 --- a/imperative/python/megengine/module/normalization.py +++ b/imperative/python/megengine/module/normalization.py @@ -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. """