C# Class numl.Supervised.SVM.SVMGenerator

A Support Vector Machine (SVM) generator.
Inheritance: Generator
Datei anzeigen Open project: sethjuarez/numl

Public Methods

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

Generates a SVM model based on a set of examples.

SVMGenerator ( ) : System

Initialises a SVMGenerator object

Method Details

Generate() public method

Generates a SVM 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.
return IModel

SVMGenerator() public method

Initialises a SVMGenerator object
public SVMGenerator ( ) : System
return System