glorotGaussianInit

Creates a parameter initialiser that uses the method of Glorot and Bengio (2010).

This technique initialises a parameter with samples from the following Gaussian distribution:

μ = 0 σ = sqrt(2 / (fan_in + fan_out))

For more details, see Glorot and Bengio (2010): http://jmlr.org/proceedings/papers/v9/glorot10a/glorot10a.pdf

glorotGaussianInit
(
)

Return Value

The constructed ParamInitiaizer.

Meta