|
GaussianWeights Constructor
|
Constructs a new Gaussian Weight initialization.
Namespace:
Accord.Neuro
Assembly:
Accord.Neuro (in Accord.Neuro.dll) Version: 3.8.0
Syntax public GaussianWeights(
ActivationNetwork network,
double stdDev = 0.1
)
Public Sub New (
network As ActivationNetwork,
Optional stdDev As Double = 0.1
)
Request Example
View SourceParameters
- network
- Type: Accord.NeuroActivationNetwork
The activation network whose weights will be initialized. - stdDev (Optional)
- Type: SystemDouble
The standard deviation to be used. Common values lie in the 0.001-
0.1 range. Default is 0.1.
See Also