C# Class xpidea.neuro.net.FeedForwardNode

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

Méthodes publiques

Méthode Description
Run ( ) : void

Overridden.Execute node's functionality.

Méthodes protégées

Méthode 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 méthode

Overridden.Execute node's functionality.
public Run ( ) : void
Résultat void

Transfer() protected méthode

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.
Résultat double