C# 클래스 Encog.Neural.NeuralData.Temporal.TemporalDataDescription

This class describes one unit of input, or output, to a temporal neural network. Data can be both an input and output. Inputs are used to attempt predict the output.
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
TemporalDataDescription ( IActivationFunction activationFunction, Type type, bool input, bool predict ) : System

Construct a data description with an activation function, but no range.

TemporalDataDescription ( IActivationFunction activationFunction, double low, double high, Type type, bool input, bool predict ) : System

Construct a data description item. Set both low and high to zero for unbounded.

TemporalDataDescription ( Type type, bool input, bool predict ) : System

Construct a data description with no activation function or range.

메소드 상세

TemporalDataDescription() 공개 메소드

Construct a data description with an activation function, but no range.
public TemporalDataDescription ( IActivationFunction activationFunction, Type type, bool input, bool predict ) : System
activationFunction IActivationFunction The activation function.
type System.Type The type of data.
input bool Used for input?
predict bool Used for prediction?
리턴 System

TemporalDataDescription() 공개 메소드

Construct a data description item. Set both low and high to zero for unbounded.
public TemporalDataDescription ( IActivationFunction activationFunction, double low, double high, Type type, bool input, bool predict ) : System
activationFunction IActivationFunction What activation function should be used?
low double What is the lowest allowed value.
high double What is the highest allowed value.
type System.Type What type of data is this.
input bool Used for input?
predict bool Used for prediction?
리턴 System

TemporalDataDescription() 공개 메소드

Construct a data description with no activation function or range.
public TemporalDataDescription ( Type type, bool input, bool predict ) : System
type System.Type The type of data.
input bool Used for input?
predict bool Used for prediction?
리턴 System