Support Vector Machine Classifier(s) based on Shogun
This is a simple base interface
Notes
Available conditional attributes:
(Conditional attributes enabled by default suffixed with +)
Interface class to Shogun’s classifiers and regressions.
Default implementation is ‘libsvm’.
SVM/SVR definition is dependent on specifying kernel, implementation type, and parameters for each of them which vary depending on the choices made.
Desired implementation is specified in svm_impl argument. Here is the list if implementations known to this class, along with specific to them parameters (described below among the rest of parameters), and what tasks it is capable to deal with (e.g. regression, binary and/or multiclass classification):
Kernel choice is specified as a kernel instance with kwargument kernel. Some kernels (e.g. Linear) might allow computation of per feature sensitivity.
| Parameters : | epsilon :
kernel :
num_threads :
retrainable :
enable_ca : None or list of str
disable_ca : None or list of str
auto_train : bool
force_train : bool
space: str, optional :
postproc : Node instance, optional
descr : str
|
|---|
Access to the SVM model.
Dataset which was used for training
TODO – might better become conditional attribute I guess