1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
from collections import OrderedDict
from AnyQt.QtCore import Qt
from AnyQt.QtWidgets import QLabel, QGridLayout
import scipy.sparse as sp
from Orange.data import Table
from Orange.modelling import SVMLearner, NuSVMLearner
from Orange.widgets import gui
from Orange.widgets.widget import Msg
from Orange.widgets.settings import Setting
from Orange.widgets.utils.owlearnerwidget import OWBaseLearner
from Orange.widgets.utils.signals import Output
from Orange.widgets.utils.widgetpreview import WidgetPreview
class OWSVM(OWBaseLearner):
name = 'SVM'
description = "Support Vector Machines map inputs to higher-dimensional " \
"feature spaces."
icon = "icons/SVM.svg"
replaces = [
"Orange.widgets.classify.owsvmclassification.OWSVMClassification",
"Orange.widgets.regression.owsvmregression.OWSVMRegression",
]
priority = 50
keywords = "svm, support vector machines"
LEARNER = SVMLearner
class Outputs(OWBaseLearner.Outputs):
support_vectors = Output("Support Vectors", Table, explicit=True,
replaces=["Support vectors"])
class Warning(OWBaseLearner.Warning):
sparse_data = Msg('Input data is sparse, default preprocessing is to scale it.')
settings_version = 2
#: Different types of SVMs
SVM, Nu_SVM = range(2)
#: SVM type
svm_type = Setting(SVM)
C = Setting(1.) # pylint: disable=invalid-name
epsilon = Setting(.1)
nu_C = Setting(1.)
nu = Setting(.5) # pylint: disable=invalid-name
#: Kernel types
Linear, Poly, RBF, Sigmoid = range(4)
#: Selected kernel type
kernel_type = Setting(RBF)
#: kernel degree
degree = Setting(3)
#: gamma
gamma = Setting(0.0)
#: coef0 (adative constant)
coef0 = Setting(1.0)
#: numerical tolerance
tol = Setting(0.001)
#: whether or not to limit number of iterations
limit_iter = Setting(True)
#: maximum number of iterations
max_iter = Setting(100)
_default_gamma = "auto"
kernels = (("Linear", "x⋅y"),
("Polynomial", "(g x⋅y + c)<sup>d</sup>"),
("RBF", "exp(-g|x-y|²)"),
("Sigmoid", "tanh(g x⋅y + c)"))
def add_main_layout(self):
self._add_type_box()
self._add_kernel_box()
self._add_optimization_box()
self._show_right_kernel()
def _add_type_box(self):
# this is part of init, pylint: disable=attribute-defined-outside-init
form = QGridLayout()
self.type_box = box = gui.radioButtonsInBox(
self.controlArea, self, "svm_type", [], box="SVM Type",
orientation=form, callback=self._update_type)
self.epsilon_radio = gui.appendRadioButton(
box, "SVM", addToLayout=False)
self.c_spin = gui.doubleSpin(
box, self, "C", 0.1, 512.0, 0.1, decimals=2,
alignment=Qt.AlignRight, addToLayout=False,
callback=self.settings_changed)
self.epsilon_spin = gui.doubleSpin(
box, self, "epsilon", 0.1, 512.0, 0.1, decimals=2,
alignment=Qt.AlignRight, addToLayout=False,
callback=self.settings_changed)
form.addWidget(self.epsilon_radio, 0, 0, Qt.AlignLeft)
form.addWidget(QLabel("Cost (C):"), 0, 1, Qt.AlignRight)
form.addWidget(self.c_spin, 0, 2)
form.addWidget(QLabel(
"Regression loss epsilon (ε):"), 1, 1, Qt.AlignRight)
form.addWidget(self.epsilon_spin, 1, 2)
self.nu_radio = gui.appendRadioButton(box, "ν-SVM", addToLayout=False)
self.nu_C_spin = gui.doubleSpin(
box, self, "nu_C", 0.1, 512.0, 0.1, decimals=2,
alignment=Qt.AlignRight, addToLayout=False,
callback=self.settings_changed)
self.nu_spin = gui.doubleSpin(
box, self, "nu", 0.05, 1.0, 0.05, decimals=2,
alignment=Qt.AlignRight, addToLayout=False,
callback=self.settings_changed)
form.addWidget(self.nu_radio, 2, 0, Qt.AlignLeft)
form.addWidget(QLabel("Regression cost (C):"), 2, 1, Qt.AlignRight)
form.addWidget(self.nu_C_spin, 2, 2)
form.addWidget(QLabel("Complexity bound (ν):"), 3, 1, Qt.AlignRight)
form.addWidget(self.nu_spin, 3, 2)
# Correctly enable/disable the appropriate boxes
self._update_type()
def _update_type(self):
# Enable/disable SVM type parameters depending on selected SVM type
if self.svm_type == self.SVM:
self.c_spin.setEnabled(True)
self.epsilon_spin.setEnabled(True)
self.nu_C_spin.setEnabled(False)
self.nu_spin.setEnabled(False)
else:
self.c_spin.setEnabled(False)
self.epsilon_spin.setEnabled(False)
self.nu_C_spin.setEnabled(True)
self.nu_spin.setEnabled(True)
self.settings_changed()
def _add_kernel_box(self):
# this is part of init, pylint: disable=attribute-defined-outside-init
# Initialize with the widest label to measure max width
self.kernel_eq = self.kernels[-1][1]
box = gui.hBox(self.controlArea, "Kernel")
self.kernel_box = buttonbox = gui.radioButtonsInBox(
box, self, "kernel_type", btnLabels=[k[0] for k in self.kernels],
callback=self._on_kernel_changed)
buttonbox.layout().setSpacing(10)
gui.rubber(buttonbox)
parambox = gui.vBox(box)
gui.label(parambox, self, "Kernel: %(kernel_eq)s")
common = dict(orientation=Qt.Horizontal, callback=self.settings_changed,
alignment=Qt.AlignRight, controlWidth=80)
spbox = gui.hBox(parambox)
gui.rubber(spbox)
inbox = gui.vBox(spbox)
gamma = gui.doubleSpin(
inbox, self, "gamma", 0.0, 10.0, 0.01, label=" g: ", **common)
gamma.setSpecialValueText(self._default_gamma)
coef0 = gui.doubleSpin(
inbox, self, "coef0", 0.0, 10.0, 0.01, label=" c: ", **common)
degree = gui.spin(
inbox, self, "degree", 0, 10, 1, label=" d: ", **common)
self._kernel_params = [gamma, coef0, degree]
gui.rubber(parambox)
# This is the maximal height (all double spins are visible)
# and the maximal width (the label is initialized to the widest one)
box.layout().activate()
box.setFixedHeight(box.sizeHint().height())
box.setMinimumWidth(box.sizeHint().width())
def _add_optimization_box(self):
# this is part of init, pylint: disable=attribute-defined-outside-init
self.optimization_box = gui.vBox(
self.controlArea, "Optimization Parameters")
self.tol_spin = gui.doubleSpin(
self.optimization_box, self, "tol", 1e-4, 1.0, 1e-4,
label="Numerical tolerance: ",
alignment=Qt.AlignRight, controlWidth=100,
callback=self.settings_changed)
self.max_iter_spin = gui.spin(
self.optimization_box, self, "max_iter", 5, 1000000, 50,
label="Iteration limit: ", checked="limit_iter",
alignment=Qt.AlignRight, controlWidth=100,
callback=self.settings_changed,
checkCallback=self.settings_changed)
def _show_right_kernel(self):
enabled = [[False, False, False], # linear
[True, True, True], # poly
[True, False, False], # rbf
[True, True, False]] # sigmoid
# set in _add_kernel_box, pylint: disable=attribute-defined-outside-init
self.kernel_eq = self.kernels[self.kernel_type][1]
mask = enabled[self.kernel_type]
for spin, enabled in zip(self._kernel_params, mask):
[spin.box.hide, spin.box.show][enabled]()
def update_model(self):
super().update_model()
sv = None
if self.model is not None:
sv = self.data[self.model.skl_model.support_]
self.Outputs.support_vectors.send(sv)
def _on_kernel_changed(self):
self._show_right_kernel()
self.settings_changed()
@OWBaseLearner.Inputs.data
def set_data(self, data):
self.Warning.sparse_data.clear()
super().set_data(data)
if self.data and sp.issparse(self.data.X):
self.Warning.sparse_data()
def create_learner(self):
kernel = ["linear", "poly", "rbf", "sigmoid"][self.kernel_type]
common_args = {
'kernel': kernel,
'degree': self.degree,
'gamma': self.gamma or self._default_gamma,
'coef0': self.coef0,
'probability': True,
'tol': self.tol,
'max_iter': self.max_iter if self.limit_iter else -1,
'preprocessors': self.preprocessors
}
if self.svm_type == self.SVM:
return SVMLearner(C=self.C, epsilon=self.epsilon, **common_args)
else:
return NuSVMLearner(nu=self.nu, C=self.nu_C, **common_args)
def get_learner_parameters(self):
items = OrderedDict()
if self.svm_type == self.SVM:
items["SVM type"] = "SVM, C={}, ε={}".format(self.C, self.epsilon)
else:
items["SVM type"] = "ν-SVM, ν={}, C={}".format(self.nu, self.nu_C)
self._report_kernel_parameters(items)
items["Numerical tolerance"] = "{:.6}".format(self.tol)
items["Iteration limt"] = self.max_iter if self.limit_iter else "unlimited"
return items
def _report_kernel_parameters(self, items):
gamma = self.gamma or self._default_gamma
if self.kernel_type == 0:
items["Kernel"] = "Linear"
elif self.kernel_type == 1:
items["Kernel"] = \
"Polynomial, ({g:.4} x⋅y + {c:.4})<sup>{d}</sup>".format(
g=gamma, c=self.coef0, d=self.degree)
elif self.kernel_type == 2:
items["Kernel"] = "RBF, exp(-{:.4}|x-y|²)".format(gamma)
else:
items["Kernel"] = "Sigmoid, tanh({g:.4} x⋅y + {c:.4})".format(
g=gamma, c=self.coef0)
@classmethod
def migrate_settings(cls, settings, version):
if version < 2:
if "degree" in settings:
settings["degree"] = int(settings["degree"])
if __name__ == "__main__": # pragma: no cover
WidgetPreview(OWSVM).run(Table("iris"))
|