C# 클래스 Encog.Engine.Data.BasicEngineData

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

공개 메소드들

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

메소드 상세

BasicEngineData() 공개 메소드

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

BasicEngineData() 공개 메소드

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

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

ToString() 공개 메소드

public ToString ( ) : System.String
리턴 System.String