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

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

Méthodes publiques

Méthode 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 méthode

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

BasicMLDataPair() public méthode

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.
Résultat System

Clone() public méthode

Clone this object.
public Clone ( ) : object
Résultat object

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

ToString() public méthode

Convert object to a string.
public ToString ( ) : string
Résultat string