Train() 공개 메소드

public Train ( Step downstream ) : void
downstream Step
리턴 void
예제 #1
0
파일: Step.cs 프로젝트: zkrunfast2015/LeNet
 public void PropogateBackwards()
 {
     if (IsPreTraining)
     {
         Weights.PreTrain(this);
     }
     else
     {
         Weights.Train(this);
     }
     ClearError();
 }