AForge.Neuro.Network.Randomize C# (CSharp) Method

Randomize() public method

Randomize layers of the network.
Randomizes network's layers by calling Layer.Randomize method of each layer.
public Randomize ( ) : void
return void
		public virtual void Randomize( )
		{
			foreach ( Layer layer in layers )
			{
				layer.Randomize( );
			}
		}