C# 클래스 xpidea.neuro.net.FeedForwardNode

A node that produce its value based on sum of values of it's inputs.
상속: NeuroNode
파일 보기 프로젝트 열기: AlexCherkasov/Neuro.NET

공개 메소드들

메소드 설명
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