C# Class numl.Supervised.NeuralNetwork.NeuralNetworkModel

A data Model for the neural network.
Inheritance: Model, ISequenceModel
Datei anzeigen Open project: sethjuarez/numl Class Usage Examples

Public Methods

Method Description
Predict ( Vector x ) : double

Predicts the given o.

PredictSequence ( Vector x ) : Vector

Predicts the given x.

Method Details

Predict() public method

Predicts the given o.
public Predict ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector
return double

PredictSequence() public method

Predicts the given x.
public PredictSequence ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector Vector of features.
return numl.Math.LinearAlgebra.Vector