File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -396,10 +396,10 @@ The *kernel function* can be any of the following:
396396 * polynomial: :math: `(\gamma <x, x'> + r)^d`. `d ` is specified by
397397 keyword ``degree ``, `r ` by ``coef0 ``.
398398
399- * rbf (:math: `exp(-\gamma |x-x'|^2 ), \gamma > 0 `). :math: `\gamma ` is
399+ * rbf (:math: `\ exp (-\gamma |x-x'|^2 ), \gamma > 0 `). :math: `\gamma ` is
400400 specified by keyword ``gamma ``.
401401
402- * sigmoid (:math: `tanh(<x_i,x_j> + r)`), where `r ` is specified by
402+ * sigmoid (:math: `\ tanh (<x_i,x_j> + r)`), where `r ` is specified by
403403 ``coef0 ``.
404404
405405Different kernels are specified by keyword kernel at initialization::
Original file line number Diff line number Diff line change @@ -149,6 +149,13 @@ class SVC(BaseLibSVM, ClassifierMixin):
149149
150150 The multiclass support is handled according to a one-vs-one scheme.
151151
152+ For details on the precise mathematical formulation of the provided
153+ kernel functions and how `gamma`, `coef0` and `degree` affect each,
154+ see the corresponding section in the narrative documentation:
155+ :ref:`svm_kernels`.
156+
157+ .. The narrative documentation is available at http://scikit-learn.org/
158+
152159 Parameters
153160 ----------
154161 C : float or None, optional (default=None)
You can’t perform that action at this time.
0 commit comments