/// <summary> /// Reset all neurons of the network starting from this layer. /// </summary> public void RecursiveResetLayer() { ResetLayer(); if (_targetLayer != null) { _targetLayer.RecursiveResetLayer(); } }
/// <summary> /// Reset all network propagation data. /// </summary> public void ResetNetwork() { _inputLayer.RecursiveResetLayer(); }