ContinuousLinearConstraint¶
- class baybe.constraints.base.ContinuousLinearConstraint[source]¶
Bases:
ContinuousConstraint
,ABC
Abstract base class for continuous linear constraints.
Continuous linear constraints use parameter lists and coefficients to define in-/equality constraints over a continuous parameter space.
Public methods
__init__
(parameters[, coefficients, rhs])Method generated by attrs for class ContinuousLinearConstraint.
from_dict
(dictionary)Create an object from its dictionary representation.
from_json
(string)Create an object from its JSON representation.
summary
()Return a custom summarization of the constraint.
to_botorch
(parameters[, idx_offset])Cast the constraint in a format required by botorch.
to_dict
()Create an object's dictionary representation.
to_json
()Create an object's JSON representation.
Public attributes and properties
In-/equality coefficient for each entry in
parameters
.Right-hand side value of the in-/equality.
Class variable encoding whether the constraint could be considered during data augmentation.
Class variable encoding whether the condition is evaluated during creation.
Class variable encoding whether the condition is evaluated during modeling.
Boolean indicating if this is a constraint over continuous parameters.
Boolean indicating if this is a constraint over discrete parameters.
Class variable encoding whether the constraint is valid only for numerical parameters.
The list of parameters used for the constraint.
- __init__(parameters: list[str], coefficients: list[float] = NOTHING, rhs: float = 0.0)¶
Method generated by attrs for class ContinuousLinearConstraint.
For details on the parameters, see Public attributes and properties.
- to_botorch(parameters: Sequence[NumericalContinuousParameter], idx_offset: int = 0)[source]¶
Cast the constraint in a format required by botorch.
Used in calling
optimize_acqf_*
functions, for details see https://botorch.org/api/optim.html#botorch.optim.optimize.optimize_acqf- Parameters:
parameters (Sequence[NumericalContinuousParameter]) – The parameter objects of the continuous space.
idx_offset (int) – Offset to the provided parameter indices.
- Return type:
tuple[Tensor, Tensor, float]
- Returns:
The tuple required by botorch.
- to_json()¶
Create an object’s JSON representation.
- Return type:
- Returns:
The JSON representation as a string.
-
eval_during_augmentation:
ClassVar
[bool
] = False¶ Class variable encoding whether the constraint could be considered during data augmentation.
-
eval_during_creation:
ClassVar
[bool
] = False¶ Class variable encoding whether the condition is evaluated during creation.
-
eval_during_modeling:
ClassVar
[bool
] = True¶ Class variable encoding whether the condition is evaluated during modeling.
- property is_continuous: bool¶
Boolean indicating if this is a constraint over continuous parameters.