Randomize() 공개 메소드

Randomize the weights and bias values. This function does most of the work of the class. Each call to this class will randomize the data according to the current temperature. The higher the temperature the more randomness.
public Randomize ( ) : void
리턴 void
예제 #1
0
 /// <summary>
 /// Call the owner's randomize method.
 /// </summary>
 ///
 public override sealed void Randomize()
 {
     _owner.Randomize();
 }
 /// <summary>
 /// Call the owner's randomize method.
 /// </summary>
 public override void Randomize()
 {
     owner.Randomize();
 }