mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-11 04:52:37 +02:00
added docstring to domains
This commit is contained in:
parent
761f7b02fc
commit
26260c355c
1 changed files with 16 additions and 0 deletions
|
|
@ -2,6 +2,22 @@
|
||||||
Created on 4 Jun 2013
|
Created on 4 Jun 2013
|
||||||
|
|
||||||
@author: maxz
|
@author: maxz
|
||||||
|
|
||||||
|
(Hyper-)Parameter domains defined for :py:mod:`~GPy.core.priors` and :py:mod:`~GPy.kern`.
|
||||||
|
These domains specify the legitimate realm of the parameters to live in.
|
||||||
|
|
||||||
|
:const:`~GPy.core.domains.REAL` :
|
||||||
|
real domain, all values in the real numbers are allowed
|
||||||
|
|
||||||
|
:const:`~GPy.core.domains.POSITIVE`:
|
||||||
|
positive domain, only positive real values are allowed
|
||||||
|
|
||||||
|
:const:`~GPy.core.domains.NEGATIVE`:
|
||||||
|
same as :const:`~GPy.core.domains.POSITIVE`, but only negative values are allowed
|
||||||
|
|
||||||
|
:const:`~GPy.core.domains.BOUNDED`:
|
||||||
|
only values within the bounded range are allowed,
|
||||||
|
the bounds are specified withing the object with the bounded range
|
||||||
'''
|
'''
|
||||||
|
|
||||||
REAL = 'real'
|
REAL = 'real'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue