AdvancedOCR.Weights.Train C# (CSharp) 메소드

Train() 공개 메소드

public Train ( Step downstream ) : void
downstream Step
리턴 void
        public virtual void Train(Step downstream)
        {
            TrainCore(downstream);
        }

Usage Example

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