C# Class Encog.Engine.Data.BasicEngineData

Inheritance: IEngineData
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
BasicEngineData ( double input ) : System

Construct the object with only input. If this constructor is used, then unsupervised training is being used.

BasicEngineData ( double input, double ideal ) : System

Construct a BasicNeuralDataPair class with the specified input and ideal values.

CreatePair ( int inputSize, int idealSize ) : IEngineData

Create a new neural data pair object of the correct size for the neural network that is being trained. This object will be passed to the getPair method to allow the neural data pair objects to be copied to it.

ToString ( ) : System.String

Method Details

BasicEngineData() public méthode

Construct the object with only input. If this constructor is used, then unsupervised training is being used.
public BasicEngineData ( double input ) : System
input double The input to the neural network.
Résultat System

BasicEngineData() public méthode

Construct a BasicNeuralDataPair class with the specified input and ideal values.
public BasicEngineData ( double input, double ideal ) : System
input double The input to the neural network.
ideal double The expected results from the neural network.
Résultat System

CreatePair() public static méthode

Create a new neural data pair object of the correct size for the neural network that is being trained. This object will be passed to the getPair method to allow the neural data pair objects to be copied to it.
public static CreatePair ( int inputSize, int idealSize ) : IEngineData
inputSize int The size of the input data.
idealSize int The size of the ideal data.
Résultat IEngineData

ToString() public méthode

public ToString ( ) : System.String
Résultat System.String