mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-28 14:26:23 +02:00
likelihoods
This commit is contained in:
parent
14f0e08f9e
commit
4e411c4b26
1 changed files with 13 additions and 0 deletions
|
|
@ -1,3 +1,16 @@
|
||||||
|
"""
|
||||||
|
Introduction
|
||||||
|
^^^^^^^^^^^^
|
||||||
|
|
||||||
|
'Likelihood' in this context is a measure of how well a model *f* predicts a dataset *y*. The importance of likelihoods in Gaussian Processes is in determining the 'best' values of kernel and noise hyperparamters to relate known, observed and unobserved data. The purpose of optimizing a model (e.g. :py:class:`GPy.models.GPRegression`) is to determine the 'best' hyperparameters i.e. those that minimize negative log marginal likelihood.
|
||||||
|
|
||||||
|
.. inheritance-diagram:: GPy.likelihoods.likelihood GPy.likelihoods.mixed_noise.MixedNoise
|
||||||
|
:top-classes: GPy.core.parameterization.parameterized.Parameterized
|
||||||
|
|
||||||
|
Most likelihood classes inherit directly from :py:class:`GPy.likelihoods.likelihood`, although an intermediary class :py:class:`GPy.likelihoods.mixed_noise.MixedNoise` is used by :py:class:`GPy.likelihoods.multioutput_likelihood`.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
from .bernoulli import Bernoulli
|
from .bernoulli import Bernoulli
|
||||||
from .exponential import Exponential
|
from .exponential import Exponential
|
||||||
from .gaussian import Gaussian, HeteroscedasticGaussian
|
from .gaussian import Gaussian, HeteroscedasticGaussian
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue