C# Class Accord.Neuro.NguyenWidrow

Nguyen-Widrow weight initialization.

The Nguyen-Widrow initialization algorithm chooses values in order to distribute the active region of each neuron in the layer approximately evenly across the layers' input space.

The values contain a degree of randomness, so they are not the same each time this function is called.

Mostra file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
NguyenWidrow ( ActivationNetwork network ) : System

Constructs a new Nguyen-Widrow Weight initialization.

Randomize ( ) : void

Randomizes (initializes) the weights of the network using a Gaussian distribution.

Randomize ( int layerIndex ) : void

Randomizes (initializes) the weights of the network using Nguyen-Widrow method's.

Method Details

NguyenWidrow() public method

Constructs a new Nguyen-Widrow Weight initialization.
public NguyenWidrow ( ActivationNetwork network ) : System
network ActivationNetwork The activation network whose weights will be initialized.
return System

Randomize() public method

Randomizes (initializes) the weights of the network using a Gaussian distribution.
public Randomize ( ) : void
return void

Randomize() public method

Randomizes (initializes) the weights of the network using Nguyen-Widrow method's.
public Randomize ( int layerIndex ) : void
layerIndex int
return void