C# Class numl.Supervised.NeuralNetwork.NeuralNetworkGenerator

A neural network generator.
Inheritance: Generator
Show file Open project: sethjuarez/numl Class Usage Examples

Public Methods

Method Description
Generate ( Matrix X, Vector y ) : IModel

Generate model based on a set of examples.

Generate ( Matrix X, Matrix Y ) : ISequenceModel
NeuralNetworkGenerator ( ) : System

Default constructor.

Method Details

Generate() public method

Generate model based on a set of examples.
public Generate ( Matrix X, Vector y ) : IModel
X numl.Math.LinearAlgebra.Matrix The Matrix to process.
y numl.Math.LinearAlgebra.Vector The Vector to process.
return IModel

Generate() public method

public Generate ( Matrix X, Matrix Y ) : ISequenceModel
X numl.Math.LinearAlgebra.Matrix
Y numl.Math.LinearAlgebra.Matrix
return ISequenceModel

NeuralNetworkGenerator() public method

Default constructor.
public NeuralNetworkGenerator ( ) : System
return System