C# 클래스 Encog.ML.Data.Basic.BasicMLDataPair

상속: IMLDataPair
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

BasicMLDataPair() 공개 메소드

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

BasicMLDataPair() 공개 메소드

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.
리턴 System

Clone() 공개 메소드

Clone this object.
public Clone ( ) : object
리턴 object

CreatePair() 공개 정적인 메소드

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.
리턴 IMLDataPair

ToString() 공개 메소드

Convert object to a string.
public ToString ( ) : string
리턴 string