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