Activation network.

Namespace:  AForge.Neuro
Assembly:  AForge.Neuro (in AForge.Neuro.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
[SerializableAttribute]
public class ActivationNetwork : Network

Remarks

Activation network is a base for multi-layer neural network with activation functions. It consists of activation layers.

Sample usage:

CopyC#
// create activation network
   ActivationNetwork network = new ActivationNetwork(
       new SigmoidFunction( ), // sigmoid activation function
       3,                      // 3 inputs
       4, 1 );                 // 2 layers:
                            // 4 neurons in the firs layer
                            // 1 neuron in the second layer

Inheritance Hierarchy

System..::.Object
  AForge.Neuro..::.Network
    AForge.Neuro..::.ActivationNetwork

See Also