PreTrain() public method

public PreTrain ( Step step ) : void
step Step
return void
Beispiel #1
0
 public void PropogateBackwards()
 {
     if (IsPreTraining)
     {
         Weights.PreTrain(this);
     }
     else
     {
         Weights.Train(this);
     }
     ClearError();
 }