AForge.Neuro.Network.Randomize C# (CSharp) 메소드

Randomize() 공개 메소드

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