C# Class numl.Supervised.Perceptron.PerceptronGenerator

A perceptron generator.
Inheritance: Generator
Afficher le fichier Open project: sethjuarez/numl Class Usage Examples

Méthodes publiques

Méthode Description
Generate ( Matrix X, Vector y ) : IModel

Generate model based on a set of examples.

PerceptronGenerator ( ) : System

Default constructor.

PerceptronGenerator ( bool normalize ) : System

Constructor.

Method Details

Generate() public méthode

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

PerceptronGenerator() public méthode

Default constructor.
public PerceptronGenerator ( ) : System
Résultat System

PerceptronGenerator() public méthode

Constructor.
public PerceptronGenerator ( bool normalize ) : System
normalize bool true to normalize.
Résultat System