edu.udo.cs.mySVM.SVM
Interface SVMInterface

All Known Implementing Classes:
KLR, SVM, SVMpattern, SVMregression

public interface SVMInterface

The interface of all SVMs.

Version:
$Id: SVMInterface.java,v 1.9 2006/08/03 14:39:37 ingomierswa Exp $
Author:
Stefan Rueping, Ingo Mierswa

Method Summary
 double getB()
          Returns the value of b.
 double[] getWeights()
          Returns the weights of all features.
 void init(Kernel kernel, ExampleSet examples)
          Initializes this SVM.
 double predict(Example example)
          Perform a prediction of label for all examples.
 void predict(ExampleSet examples)
          Perform a prediction of label for all examples.
 void train()
          Train this SVM.
 

Method Detail

init

void init(Kernel kernel,
          ExampleSet examples)
Initializes this SVM.


train

void train()
Train this SVM.


predict

void predict(ExampleSet examples)
Perform a prediction of label for all examples.


predict

double predict(Example example)
Perform a prediction of label for all examples.


getWeights

double[] getWeights()
Returns the weights of all features.


getB

double getB()
Returns the value of b.



Copyright © 2001-2006