Skip to content
Snippets Groups Projects
Commit 5f6d012b authored by David Warde-Farley's avatar David Warde-Farley
Browse files

Fix math notation for exp and tanh.

Typically one uses \exp and \tanh, otherwise LaTeX/mathtex renders it as
if e, x, p or t, a, n, h are all separate variables being multiplied.
parent 5942665a
Branches
Tags
No related merge requests found
......@@ -396,10 +396,10 @@ The *kernel function* can be any of the following:
* polynomial: :math:`(\gamma <x, x'> + r)^d`. `d` is specified by
keyword ``degree``, `r` by ``coef0``.
* rbf (:math:`exp(-\gamma |x-x'|^2), \gamma > 0`). :math:`\gamma` is
* rbf (:math:`\exp(-\gamma |x-x'|^2), \gamma > 0`). :math:`\gamma` is
specified by keyword ``gamma``.
* sigmoid (:math:`tanh(<x_i,x_j> + r)`), where `r` is specified by
* sigmoid (:math:`\tanh(<x_i,x_j> + r)`), where `r` is specified by
``coef0``.
Different kernels are specified by keyword kernel at initialization::
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment