SimpleModelComparison.add_condition_gain_greater_than#
- SimpleModelComparison.add_condition_gain_greater_than(min_allowed_gain: float = 0.1, classes: Optional[List[Hashable]] = None, average: bool = False)[source]#
Add condition - require minimum allowed gain between the model and the simple model.
- Parameters
- min_allowed_gainfloat , default: 0.1
Minimum allowed gain between the model and the simple model - gain is: difference in performance / (perfect score - simple score)
- classesList[Hashable] , default: None
Used in classification models to limit condition only to given classes.
- averagebool , default: False
Used in classification models to flag if to run condition on average of classes, or on each class individually. If any scorer that return a single value is used, this parameter is ignored (will act as if average=True).