PreTrain() public method

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