C# Class 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.
ファイルを表示 Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
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.

Method Details

TemporalDataDescription() public method

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?
return System

TemporalDataDescription() public method

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?
return System

TemporalDataDescription() public method

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?
return System