C# Class xpidea.neuro.net.FeedForwardNode

A node that produce its value based on sum of values of it's inputs.
Inheritance: NeuroNode
Show file Open project: AlexCherkasov/Neuro.NET

Public Methods

Method Description
Run ( ) : void

Overridden.Execute node's functionality.

Protected Methods

Method Description
Transfer ( double value ) : double

An Activation function of the node.

Activation functions for the hidden nodes are needed to introduce nonlinearity into the network. You can override this method to introduce your own function.

Method Details

Run() public method

Overridden.Execute node's functionality.
public Run ( ) : void
return void

Transfer() protected method

An Activation function of the node.
Activation functions for the hidden nodes are needed to introduce nonlinearity into the network. You can override this method to introduce your own function.
protected Transfer ( double value ) : double
value double Sum of input values of the node.
return double