C# Class Encog.Engine.Data.BasicEngineData

Inheritance: IEngineData
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

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.
return System

BasicEngineData() public method

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.
return System

CreatePair() public static method

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.
return IEngineData

ToString() public method

public ToString ( ) : System.String
return System.String