Uses of Class
com.imsl.datamining.supportvectormachine.Kernel
Packages that use Kernel
-
Uses of Kernel in com.imsl.datamining.supportvectormachine
Subclasses of Kernel in com.imsl.datamining.supportvectormachineModifier and TypeClassDescriptionclassSpecifies the linear kernel for support vector machines.classSpecifies the polynomial kernel for support vector machines.classSpecifies the radial basis kernel for support vector machines.classSpecifies the sigmoid kernel for support vector machines.Methods in com.imsl.datamining.supportvectormachine that return KernelModifier and TypeMethodDescriptionabstract KernelKernel.clone()Returns a clone of this object.protected KernelSupportVectorMachine.getKernel()Returns the kernel object being used in the optimization.Methods in com.imsl.datamining.supportvectormachine with parameters of type KernelModifier and TypeMethodDescriptionprotected abstract SVModelAbstract method to perform the support vector machine optimization.protected SVModelPerforms the classification support vector machine optimization problem.protected SVModelPerforms the one class support vector machine optimization problem.protected SVModelPerforms the regression support vector machine optimization problem.voidSets the kernel to be used in the optimization.Constructors in com.imsl.datamining.supportvectormachine with parameters of type KernelModifierConstructorDescriptionSupportVectorMachine(double[][] xy, int responseColumnIndex, PredictiveModel.VariableType[] varType, Kernel k) Constructs a support vector machine for a single response variable and multiple predictor variables.SVClassification(double[][] xy, int responseColumnIndex, PredictiveModel.VariableType[] varType, Kernel k) Constructs a support vector machine for classification (SVC).SVOneClass(double[][] xy, int responseColumnIndex, PredictiveModel.VariableType[] varType, Kernel k) Constructs a one class support vector machine.SVRegression(double[][] xy, int responseColumnIndex, PredictiveModel.VariableType[] varType, Kernel k) Constructs a support vector machine for regression (SVR).