Package sklearn.svm
Interface HasLibSVMKernel
-
- All Known Implementing Classes:
KernelRidge,LibSVMClassifier,LibSVMRegressor,OneClassSVM
public interface HasLibSVMKernel
-
-
Field Summary
Fields Modifier and Type Field Description static List<String>ENUM_KERNELstatic StringKERNEL_LINEARstatic StringKERNEL_POLYstatic StringKERNEL_RBFstatic StringKERNEL_SIGMOID
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NumbergetCoef0()IntegergetDegree()NumbergetGamma()StringgetKernel()
-
-
-
Field Detail
-
KERNEL_LINEAR
static final String KERNEL_LINEAR
- See Also:
- Constant Field Values
-
KERNEL_POLY
static final String KERNEL_POLY
- See Also:
- Constant Field Values
-
KERNEL_RBF
static final String KERNEL_RBF
- See Also:
- Constant Field Values
-
KERNEL_SIGMOID
static final String KERNEL_SIGMOID
- See Also:
- Constant Field Values
-
-