Minor changes to docstring according to guidelines

This commit is contained in:
Shreyas 2019-03-30 00:28:23 +05:30
parent b6fcd1d837
commit 4cb7b9278b

View File

@ -295,10 +295,10 @@ GroupNorm(chs::Integer, G::Integer, λ = identity;
initβ = (i) -> zeros(Float32, i), initγ = (i) -> ones(Float32, i),
ϵ = 1f-5, momentum = 0.1f0)
chs is the number of channels, the channel dimension of your input.
``chs`` is the number of channels, the channel dimension of your input.
For an array of N dimensions, the (N-1)th index is the channel dimension.
G is the number of groups along which the statistics would be computed.
``G`` is the number of groups along which the statistics would be computed.
The number of channels must be an integer multiple of the number of groups.
Example: