C# Class numl.Supervised.SVM.SVMModel

A SVM Model object
Inheritance: Model, IClassifier
Datei anzeigen Open project: sethjuarez/numl

Public Methods

Method Description
Predict ( Vector x ) : double

Create a prediction from the supplied test item.

PredictRaw ( Vector x ) : double

Computes the probability of the prediction being True.

SVMModel ( ) : System

Default constructor

Method Details

Predict() public method

Create a prediction from the supplied test item.
public Predict ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector Training record
return double

PredictRaw() public method

Computes the probability of the prediction being True.
public PredictRaw ( Vector x ) : double
x numl.Math.LinearAlgebra.Vector
return double

SVMModel() public method

Default constructor
public SVMModel ( ) : System
return System