C# Class FANNCSharp.Fixed.NeuralNet

Inheritance: IDisposable
Afficher le fichier Open project: joelself/FannCSharp Class Usage Examples

Private Properties

Свойство Type Description
NeuralNet System

Méthodes publiques

Méthode Description
DisableSeedRand ( ) : void
Dispose ( ) : void
EnableSeedRand ( ) : void
GetActivationFunction ( int layer, int neuron ) : ActivationFunction
GetActivationSteepness ( int layer, int neuron ) : int
InitWeights ( TrainingData data ) : void
NeuralNet ( NetworkType netType, ICollection layers ) : System
NeuralNet ( NetworkType netType, uint numLayers ) : System
NeuralNet ( NeuralNet other ) : System
NeuralNet ( float connectionRate, ICollection layers ) : System
NeuralNet ( float connectionRate, uint numLayers ) : System
NeuralNet ( string filename ) : System
PrintConnections ( ) : void
PrintError ( ) : void
PrintParameters ( ) : void
RandomizeWeights ( int minWeight, int maxWeight ) : void
ResetErrno ( ) : void
ResetErrstr ( ) : void
ResetMSE ( ) : void
Run ( DataAccessor input ) : int[]
Run ( int input ) : int[]
Save ( string file ) : bool
SaveToFixed ( string file ) : int
SetActivationFunction ( ActivationFunction function, int layer, int neuron ) : void
SetActivationFunctionLayer ( ActivationFunction function, int layer ) : void
SetActivationSteepness ( int steepness, int layer, int neuron ) : void
SetActivationSteepnessLayer ( int steepness, int layer ) : void
SetWeight ( uint fromNeuron, uint toNeuron, int weight ) : void
Test ( int input, int desiredOutput ) : int[]
TestData ( TrainingData data ) : float

Private Methods

Méthode Description
NeuralNet ( neural_net other ) : System

Method Details

DisableSeedRand() public méthode

public DisableSeedRand ( ) : void
Résultat void

Dispose() public méthode

public Dispose ( ) : void
Résultat void

EnableSeedRand() public méthode

public EnableSeedRand ( ) : void
Résultat void

GetActivationFunction() public méthode

public GetActivationFunction ( int layer, int neuron ) : ActivationFunction
layer int
neuron int
Résultat ActivationFunction

GetActivationSteepness() public méthode

public GetActivationSteepness ( int layer, int neuron ) : int
layer int
neuron int
Résultat int

InitWeights() public méthode

public InitWeights ( TrainingData data ) : void
data TrainingData
Résultat void

NeuralNet() public méthode

public NeuralNet ( NetworkType netType, ICollection layers ) : System
netType NetworkType
layers ICollection
Résultat System

NeuralNet() public méthode

public NeuralNet ( NetworkType netType, uint numLayers ) : System
netType NetworkType
numLayers uint
Résultat System

NeuralNet() public méthode

public NeuralNet ( NeuralNet other ) : System
other NeuralNet
Résultat System

NeuralNet() public méthode

public NeuralNet ( float connectionRate, ICollection layers ) : System
connectionRate float
layers ICollection
Résultat System

NeuralNet() public méthode

public NeuralNet ( float connectionRate, uint numLayers ) : System
connectionRate float
numLayers uint
Résultat System

NeuralNet() public méthode

public NeuralNet ( string filename ) : System
filename string
Résultat System

PrintConnections() public méthode

public PrintConnections ( ) : void
Résultat void

PrintError() public méthode

public PrintError ( ) : void
Résultat void

PrintParameters() public méthode

public PrintParameters ( ) : void
Résultat void

RandomizeWeights() public méthode

public RandomizeWeights ( int minWeight, int maxWeight ) : void
minWeight int
maxWeight int
Résultat void

ResetErrno() public méthode

public ResetErrno ( ) : void
Résultat void

ResetErrstr() public méthode

public ResetErrstr ( ) : void
Résultat void

ResetMSE() public méthode

public ResetMSE ( ) : void
Résultat void

Run() public méthode

public Run ( DataAccessor input ) : int[]
input DataAccessor
Résultat int[]

Run() public méthode

public Run ( int input ) : int[]
input int
Résultat int[]

Save() public méthode

public Save ( string file ) : bool
file string
Résultat bool

SaveToFixed() public méthode

public SaveToFixed ( string file ) : int
file string
Résultat int

SetActivationFunction() public méthode

public SetActivationFunction ( ActivationFunction function, int layer, int neuron ) : void
function ActivationFunction
layer int
neuron int
Résultat void

SetActivationFunctionLayer() public méthode

public SetActivationFunctionLayer ( ActivationFunction function, int layer ) : void
function ActivationFunction
layer int
Résultat void

SetActivationSteepness() public méthode

public SetActivationSteepness ( int steepness, int layer, int neuron ) : void
steepness int
layer int
neuron int
Résultat void

SetActivationSteepnessLayer() public méthode

public SetActivationSteepnessLayer ( int steepness, int layer ) : void
steepness int
layer int
Résultat void

SetWeight() public méthode

public SetWeight ( uint fromNeuron, uint toNeuron, int weight ) : void
fromNeuron uint
toNeuron uint
weight int
Résultat void

Test() public méthode

public Test ( int input, int desiredOutput ) : int[]
input int
desiredOutput int
Résultat int[]

TestData() public méthode

public TestData ( TrainingData data ) : float
data TrainingData
Résultat float