C# Класс xpidea.neuro.net.FeedForwardNode

A node that produce its value based on sum of values of it's inputs.
Наследование: NeuroNode
Показать файл Открыть проект

Открытые методы

Метод Описание
Run ( ) : void

Overridden.Execute node's functionality.

Защищенные методы

Метод Описание
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.

Описание методов

Run() публичный Метод

Overridden.Execute node's functionality.
public Run ( ) : void
Результат void

Transfer() защищенный Метод

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.
Результат double