mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-25 04:46:23 +02:00
kernel docs to kern.src
This commit is contained in:
parent
2b22d4027a
commit
24549e8c7d
3 changed files with 10 additions and 7 deletions
|
|
@ -1,10 +1,4 @@
|
|||
"""
|
||||
Kernel module the kernels to sit in.
|
||||
|
||||
.. automodule:: .src
|
||||
:members:
|
||||
:private-members:
|
||||
"""
|
||||
from .src.kern import Kern
|
||||
from .src.add import Add
|
||||
from .src.prod import Prod
|
||||
|
|
|
|||
|
|
@ -1 +1,10 @@
|
|||
"""
|
||||
|
||||
In terms of Gaussian Processes, a kernel is a function that specifies the degree of similarity between variables given their relative positions in parameter space. If known variables *x* and *x'* are close together then observed variables *y* and *y'* may also be similar, depending on the kernel function and its parameters.
|
||||
|
||||
.. inheritance-diagram:: GPy.kern.src.kern.Kern
|
||||
:top-classes: GPy.core.parameterization.parameterized.Parameterized
|
||||
|
||||
"""
|
||||
|
||||
from . import psi_comp
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ Several tutorials have been developed in the form of `Jupyter Notebooks <https:/
|
|||
GPy.core
|
||||
GPy.core.parameterization
|
||||
GPy.models
|
||||
GPy.kern
|
||||
GPy.kern.src
|
||||
GPy.likelihoods
|
||||
GPy.mappings
|
||||
GPy.examples
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue