Activation network.
Namespace:
AForge.NeuroAssembly: AForge.Neuro (in AForge.Neuro.dll) Version: 2.2.4.0 (2.2.4.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:
// 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