ContinuousLinearEqualityConstraint¶
- class baybe.constraints.continuous.ContinuousLinearEqualityConstraint[source]¶
Bases:
ContinuousLinearConstraint
Class for continuous equality constraints.
The constraint is defined as
sum_i[ x_i * c_i ] == rhs
, where x_i are the parameter names fromparameters
and c_i are the entries ofcoefficients
. The constraint is typically fulfilled up to a small numerical tolerance.The class has no real content as it only serves the purpose of distinguishing the constraints.
Public methods
__init__
(parameters[, coefficients, rhs])Method generated by attrs for class ContinuousLinearEqualityConstraint.
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
.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.
Right-hand side value of the in-/equality.
- __init__(parameters: list[str], coefficients: list[float] = NOTHING, rhs: float = 0.0)¶
Method generated by attrs for class ContinuousLinearEqualityConstraint.
For details on the parameters, see Public attributes and properties.
- to_botorch(parameters: Sequence[NumericalContinuousParameter], idx_offset: int = 0)¶
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.
- coefficients: list[float]¶
In-/equality coefficient for each entry in
parameters
.
- 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.
- numerical_only: ClassVar[bool] = True¶
Class variable encoding whether the constraint is valid only for numerical parameters.
- parameters: list[str]¶
The list of parameters used for the constraint.
- rhs: float¶
Right-hand side value of the in-/equality.