C# Class numl.Supervised.NeuralNetwork.Recurrent.GatedRecurrentModel

Gated Recurrent Neural Network model.
Inheritance: Model, ISequenceModel
Mostra file Open project: sethjuarez/numl Class Usage Examples

Public Methods

Method Description
Predict ( Vector x ) : double

Predicts the next label for the given input.

PredictSequence ( Vector x ) : Vector

Predicts the next sequence label for the given input.

Method Details

Predict() public method

Predicts the next label for the given input.
public Predict ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector State.
return double

PredictSequence() public method

Predicts the next sequence label for the given input.
public PredictSequence ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector State.
return numl.Math.LinearAlgebra.Vector