Class SupportVectorMachine
- java.lang.Object
-
- net.sf.tweety.machinelearning.svm.SupportVectorMachine
-
- All Implemented Interfaces:
Classifier
public class SupportVectorMachine extends java.lang.Object implements Classifier
Realizes a support vector machine classifier utilizing LIBSVM.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description Category
classify(Observation obs)
Classifies the given observation.
-
-
-
Method Detail
-
classify
public Category classify(Observation obs)
Description copied from interface:Classifier
Classifies the given observation.- Specified by:
classify
in interfaceClassifier
- Parameters:
obs
- some observation.- Returns:
- The category of the observation.
-
-