DiscreteDependenciesConstraint¶
- class baybe.constraints.discrete.DiscreteDependenciesConstraint[source]¶
Bases:
DiscreteConstraint
Constraint that specifies dependencies between parameters.
For instance some parameters might only be relevant when another parameter has a certain value (e.g. parameter switch is ‘on’). All dependencies must be declared in a single constraint.
Public methods
__init__
(parameters, conditions, ...)Method generated by attrs for class DiscreteDependenciesConstraint.
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
The list of individual conditions.
The parameters affected by the individual conditions.
Flag that indicates whether the affected parameters are permutation invariant.
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], conditions: list[Condition], affected_parameters: list[list[str]])¶
Method generated by attrs for class DiscreteDependenciesConstraint.
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
] = True¶ 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.