Click or drag to resize

SVMClassification Class

Support vector machine classification model
Inheritance Hierarchy
SystemObject
  FinMath.MachineLearning.SVMSVM
    FinMath.MachineLearning.SVMSVMClassification
      FinMath.MachineLearning.SVMSVMClassificationProbability

Namespace:  FinMath.MachineLearning.SVM
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
[SerializableAttribute]
public class SVMClassification : SVM, 
	IBaseClassifier

The SVMClassification type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyClasses
Classes list.
Public propertyKernel
SVM kernel type.
(Inherited from SVM.)
Public propertySupportVectorsNumber
The number of support vectors
(Inherited from SVM.)
Public propertyTrainIterationsElapsed
Returns last model train optimizations iterations number.
Public propertyTrainTimeElapsed
Returns last model train time.
Public propertyType
Classification model type.
Top
Methods
  NameDescription
Public methodClassify(Matrix)
Classifies the observation matrix.
Public methodClassify(Vector)
Classifies observation vector into one of the classes.
Public methodClassify(Matrix, IntegerArray)
Classifies the observation matrix.
Public methodClear
Delete model
(Inherited from SVM.)
Public methodDispose
Disposing method
(Inherited from SVM.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodEstimateTrainArguments
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetObjectData
The object optimized serialization method.
(Inherited from SVM.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodLoad(String)
Load model from file.
Public methodLoad(String, String, String)
Load model from files.
(Overrides SVMLoad(String, String, String).)
Public methodSave(String)
Save model to file.
Public methodSave(String, String, String)
Save model to files.
(Inherited from SVM.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrain
The BaseClassifier interface function. Train TrainCSVC classifier by default.
Public methodTrainCSVC
Train C - Support Vector Classifier
Public methodTrainNuSVC
Train \nu - Support Vector Classifier
Top
See Also