|
|
__init__(self,
name,
default_constraint=None,
*a,
**kw)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
constrain_fixed(self,
value=None,
warning=True,
trigger_parent=True)
Constrain this parameter to be fixed to the current value it carries. |
source code
|
|
|
|
fix(self,
value=None,
warning=True,
trigger_parent=True)
Constrain this parameter to be fixed to the current value it carries. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
constrain(self,
transform,
warning=True,
trigger_parent=True)
:param transform: the :py:class:`paramz.transformations.Transformation`
to constrain the this parameter to. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
constrain_bounded(self,
lower,
upper,
warning=True,
trigger_parent=True)
:param lower, upper: the limits to bound this parameter to :param
warning: print a warning if re-constraining parameters. |
source code
|
|
|
|
unconstrain_positive(self)
Remove positive constraint of this parameter. |
source code
|
|
|
|
unconstrain_negative(self)
Remove negative constraint of this parameter. |
source code
|
|
|
|
|
|
Inherited from indexable.Indexable:
__setstate__,
add_index_operation,
remove_index_operation
Inherited from nameable.Nameable:
hierarchy_name
Inherited from gradcheckable.Gradcheckable:
checkgrad
Inherited from pickleable.Pickleable:
__deepcopy__,
__getstate__,
copy,
pickle
Inherited from parentable.Parentable:
has_parent
Inherited from updateable.Updateable:
toggle_update,
trigger_update,
update_model,
update_toggle
Inherited from observable.Observable:
add_observer,
change_priority,
notify_observers,
remove_observer,
set_updates
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|