Documentation For Encog 2.x

SynapseType Enumeration

Specifies the type of synapse to be created.

public enum SynapseType

Members

Member Name Description
OneToOne OneToOne - Each neuron is connected to the same neuron number in the next layer. The two layers must have the same number of neurons.
Weighted Weighted - The neurons are connected between the two levels with weights. These weights change during training.
Weightless Weightless - Every neuron is connected to every other neuron in the next layer, but there are no weights.
Direct Direct - Input is simply passed directly to the next layer.
Normalize Normalize - A synapse that normalizes the data. Used to implement a SOM.

Requirements

Namespace: Encog.Neural.Networks.Synapse

Assembly: encog-core-cs (in encog-core-cs.dll)

See Also

Encog.Neural.Networks.Synapse Namespace