Train() public method

public Train ( Step downstream ) : void
downstream Step
return void
コード例 #1
0
ファイル: Step.cs プロジェクト: zkrunfast2015/LeNet
 public void PropogateBackwards()
 {
     if (IsPreTraining)
     {
         Weights.PreTrain(this);
     }
     else
     {
         Weights.Train(this);
     }
     ClearError();
 }