Train() public method

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