C# 클래스 NeuralNetwork.Network.Neuron

파일 보기 프로젝트 열기: trentsartain/Neural-Network

공개 메소드들

메소드 설명
CalculateError ( double target ) : double
CalculateGradient ( double target = null ) : double
CalculateValue ( ) : double
Neuron ( ) : System.Collections.Generic
Neuron ( IEnumerable inputNeurons ) : System.Collections.Generic
UpdateWeights ( double learnRate, double momentum ) : void

메소드 상세

CalculateError() 공개 메소드

public CalculateError ( double target ) : double
target double
리턴 double

CalculateGradient() 공개 메소드

public CalculateGradient ( double target = null ) : double
target double
리턴 double

CalculateValue() 공개 메소드

public CalculateValue ( ) : double
리턴 double

Neuron() 공개 메소드

public Neuron ( ) : System.Collections.Generic
리턴 System.Collections.Generic

Neuron() 공개 메소드

public Neuron ( IEnumerable inputNeurons ) : System.Collections.Generic
inputNeurons IEnumerable
리턴 System.Collections.Generic

UpdateWeights() 공개 메소드

public UpdateWeights ( double learnRate, double momentum ) : void
learnRate double
momentum double
리턴 void