DiscreteCustomConstraint¶
- class baybe.constraints.discrete.DiscreteCustomConstraint[source]¶
Bases:
DiscreteConstraint
Class for user-defined custom constraints.
Public methods
__init__
(parameters, validator)Method generated by attrs for class DiscreteCustomConstraint.
from_dict
(dictionary)Create an object from its dictionary representation.
from_json
(string)Create an object from its JSON representation.
get_invalid
(data)Get the indices of dataframe entries that are invalid under the constraint.
Translate the constraint to Polars expression identifying undesired rows.
summary
()Return a custom summarization of the constraint.
to_dict
()Create an object's dictionary representation.
to_json
()Create an object's JSON representation.
Public attributes and properties
A user-defined function modeling the validation of the constraint.
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], validator: Callable[[DataFrame], Series])¶
Method generated by attrs for class DiscreteCustomConstraint.
For details on the parameters, see Public attributes and properties.
- get_invalid(data: DataFrame)[source]¶
Get the indices of dataframe entries that are invalid under the constraint.
- get_invalid_polars()¶
Translate the constraint to Polars expression identifying undesired rows.
- Return type:
pl.Expr
- Returns:
The Polars expressions to pass to
polars.LazyFrame.filter()
.- Raises:
NotImplementedError – If the constraint class does not have a Polars implementation.
- 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
] = True¶ Class variable encoding whether the condition is evaluated during creation.
-
eval_during_modeling:
ClassVar
[bool
] = False¶ Class variable encoding whether the condition is evaluated during modeling.
- property is_continuous: bool¶
Boolean indicating if this is a constraint over continuous parameters.