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