C# Class numl.Supervised.NeuralNetwork.Encoders.AutoencoderModel

An Autoencoder model.
Inheritance: Model, ISequenceModel
Show file Open project: sethjuarez/numl Class Usage Examples

Public Methods

Method Description
Predict ( Vector x ) : double

Predicts the given o.

PredictSequence ( Vector x ) : Vector

Autoencodes the given example.

Method Details

Predict() public method

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

PredictSequence() public method

Autoencodes the given example.
public PredictSequence ( Vector x ) : Vector
x numl.Math.LinearAlgebra.Vector
return numl.Math.LinearAlgebra.Vector