Randomize() public method

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
return void
コード例 #1
0
 /// <summary>
 /// Call the owner's randomize method.
 /// </summary>
 ///
 public override sealed void Randomize()
 {
     _owner.Randomize();
 }
コード例 #2
0
 /// <summary>
 /// Call the owner's randomize method.
 /// </summary>
 public override void Randomize()
 {
     owner.Randomize();
 }