View source on GitHub
|
A container for all user-configurable EDA check specs.
meridian.model.eda.eda_spec.EDASpec(
*,
aggregation_config: meridian.model.eda.eda_spec.AggregationConfig = dataclasses.field(default_factory=AggregationConfig),
vif_spec: meridian.model.eda.eda_spec.VIFSpec = dataclasses.field(default_factory=VIFSpec)
)
This object allows users to customize the behavior of the EDA checks by passing a single configuration object into the EDAEngine constructor, avoiding a large number of arguments.
Attributes | |
|---|---|
aggregation_config
|
A configuration object for custom aggregation functions. |
vif_spec
|
A configuration object for the EDA VIF check. |
Methods
__eq__
__eq__(
other
)
Return self==value.
View source on GitHub