Esempio n. 1
0
 /// <summary>
 /// Propagate all neurons of the network starting from this layer.
 /// </summary>
 public void RecursiveCalculateFeedforward()
 {
     CalculateFeedforward();
     if (_targetLayer != null)
     {
         _targetLayer.RecursiveCalculateFeedforward();
     }
 }
Esempio n. 2
0
 /// <summary>
 /// Propagate the network.
 /// </summary>
 public void CalculateFeedforward()
 {
     _inputLayer.RecursiveCalculateFeedforward();
 }