C# Class Encog.ML.Data.Basic.BasicMLDataPair

Inheritance: IMLDataPair
Mostra file Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
BasicMLDataPair ( IMLData input ) : System

Construct a data pair that only includes input. (unsupervised)

BasicMLDataPair ( IMLData input, IMLData ideal ) : System

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

Clone ( ) : object

Clone this object.

CreatePair ( int inputSize, int idealSize ) : IMLDataPair

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 ( ) : string

Convert object to a string.

Method Details

BasicMLDataPair() public method

Construct a data pair that only includes input. (unsupervised)
public BasicMLDataPair ( IMLData input ) : System
input IMLData The input data.
return System

BasicMLDataPair() public method

Construct a BasicMLDataPair class with the specified input and ideal values.
public BasicMLDataPair ( IMLData input, IMLData ideal ) : System
input IMLData The input to the neural network.
ideal IMLData The expected results from the neural network.
return System

Clone() public method

Clone this object.
public Clone ( ) : object
return object

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 ) : IMLDataPair
inputSize int The size of the input data.
idealSize int The size of the ideal data.
return IMLDataPair

ToString() public method

Convert object to a string.
public ToString ( ) : string
return string