C# Class NeuralNetwork.Network.Neuron

Afficher le fichier Open project: trentsartain/Neural-Network

Méthodes publiques

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

Method Details

CalculateError() public méthode

public CalculateError ( double target ) : double
target double
Résultat double

CalculateGradient() public méthode

public CalculateGradient ( double target = null ) : double
target double
Résultat double

CalculateValue() public méthode

public CalculateValue ( ) : double
Résultat double

Neuron() public méthode

public Neuron ( ) : System.Collections.Generic
Résultat System.Collections.Generic

Neuron() public méthode

public Neuron ( IEnumerable inputNeurons ) : System.Collections.Generic
inputNeurons IEnumerable
Résultat System.Collections.Generic

UpdateWeights() public méthode

public UpdateWeights ( double learnRate, double momentum ) : void
learnRate double
momentum double
Résultat void