C# Class Encog.Neural.Networks.Synapse.NEAT.NEATLink

Implements a link between two NEAT neurons. NeuroEvolution of Augmenting Topologies (NEAT) is a genetic algorithm for the generation of evolving artificial neural networks. It was developed by Ken Stanley while at The University of Texas at Austin. http://www.cs.ucf.edu/~kstanley/
Exibir arquivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
NEATLink ( ) : System

Default constructor.

NEATLink ( double weight, NEATNeuron fromNeuron, NEATNeuron toNeuron, bool recurrent ) : System

Construct a NEAT link.

Method Details

NEATLink() public method

Default constructor.
public NEATLink ( ) : System
return System

NEATLink() public method

Construct a NEAT link.
public NEATLink ( double weight, NEATNeuron fromNeuron, NEATNeuron toNeuron, bool recurrent ) : System
weight double The weight between the two neurons.
fromNeuron NEATNeuron The source neuron.
toNeuron NEATNeuron The target neuron.
recurrent bool Is this a recurrent link.
return System