예제 #1
0
파일: Trainer.cs 프로젝트: pscrv/NeuralNet
        protected void _runAndBackPropagate(BatchPair tv)
        {
            VectorBatch result = _component.Run(tv.First);

            _costAccumulator += _costFunction.Cost(tv.Second, result);
            _component.BackPropagate(_costFunction.Gradient(tv.Second, result));
        }
예제 #2
0
 public BatchPairNode(BatchPair pair)
 {
     Pair = pair;
     Next = null;
 }