Module domains
source code
(Hyper-)Parameter domains defined for :py:mod:`paramz.transformations`.
These domains specify the legitimate realm of the parameters to live in.
:const:`~paramz.domains._REAL` :
real domain, all values in the real numbers are allowed
:const:`~paramz.domains._POSITIVE`:
positive domain, only positive real values are allowed
:const:`~paramz.domains._NEGATIVE`:
same as :const:`~paramz.domains._POSITIVE`, but only negative values are allowed
:const:`~paramz.domains._BOUNDED`:
only values within the bounded range are allowed,
the bounds are specified withing the object with the bounded range
|
|
_REAL = 'real'
|
|
|
_POSITIVE = 'positive'
hash(x)
|
|
|
_NEGATIVE = 'negative'
hash(x)
|
|
|
_BOUNDED = 'bounded'
hash(x)
|
|
|
__package__ = None
hash(x)
|