AdvancedOCR.Weights.PreTrain C# (CSharp) Method

PreTrain() public method

public PreTrain ( Step step ) : void
step Step
return void
        public virtual void PreTrain(Step step)
        {
            PreTrainingSamples += 1;
            PreTrainCore(step);
        }

Usage Example

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