C# Class AIMA.Core.Learning.Neural.Perceptron

Inheritance: FunctionApproximator
Afficher le fichier Open project: PaulMineau/AIMA.Net Class Usage Examples

Méthodes publiques

Méthode Description
Perceptron ( int numberOfNeurons, int numberOfInputs ) : System
predict ( NNExample nne ) : Vector
processError ( Vector error ) : void
processInput ( Vector input ) : Vector
testOnDataSet ( NNDataSet nnds ) : int[]
trainOn ( NNDataSet innds, int numberofEpochs ) : void

Method Details

Perceptron() public méthode

public Perceptron ( int numberOfNeurons, int numberOfInputs ) : System
numberOfNeurons int
numberOfInputs int
Résultat System

predict() public méthode

public predict ( NNExample nne ) : Vector
nne NNExample
Résultat AIMA.Core.Util.Math.Vector

processError() public méthode

public processError ( Vector error ) : void
error AIMA.Core.Util.Math.Vector
Résultat void

processInput() public méthode

public processInput ( Vector input ) : Vector
input AIMA.Core.Util.Math.Vector
Résultat AIMA.Core.Util.Math.Vector

testOnDataSet() public méthode

public testOnDataSet ( NNDataSet nnds ) : int[]
nnds NNDataSet
Résultat int[]

trainOn() public méthode

public trainOn ( NNDataSet innds, int numberofEpochs ) : void
innds NNDataSet
numberofEpochs int
Résultat void