public class OVO_SVM_RFE extends SVMBasedMethods
This java class is used to implement OVO_SVM_RFE method for multiclass classification based on SVM_RFE method (support vector machine method based on recursive feature elimination) in which One-Versus-One (OVO) strategy is applied to construct binary classifiers.
Author:
Sina Tabakhi
See Also:
  • Constructor Details

    • OVO_SVM_RFE

      public OVO_SVM_RFE(Object... arguments)
      Initializes the parameters
      Parameters:
      arguments - array of parameters contains (path, kernelType, Parameter c) in which path is the path of the project, kernelType is the type of kernel to use, and Parameter c is the complexity parameter C
    • OVO_SVM_RFE

      public OVO_SVM_RFE(String path, SVMKernelType kernelType, double c)
      Initializes the parameters
      Parameters:
      path - the path of the project
      kernelType - the type of kernel to use
      c - the complexity parameter C
  • Method Details

    • evaluateFeatures

      public void evaluateFeatures()
      Starts the feature selection process by support vector machine method based on recursive feature elimination using One-Versus-One strategy (OVO_SVM_RFE)
      Specified by:
      evaluateFeatures in class FeatureSelection