SingleDatasetPerformance#
- class SingleDatasetPerformance[source]#
Summarize given model performance on the train and test datasets based on selected scorers.
- Parameters
- scorers: Union[Mapping[str, Union[str, Callable]], List[str]], default: None
Scorers to override the default scorers, find more about the supported formats at https://docs.deepchecks.com/stable/user-guide/general/metrics_guide.html
- n_samplesint , default: 1_000_000
number of samples to use for this check.
- random_stateint, default: 42
random seed for all check internals.
- __init__(scorers: Optional[Union[Mapping[str, Union[str, Callable]], List[str]]] = None, n_samples: int = 1000000, random_state: int = 42, **kwargs)[source]#
- __new__(*args, **kwargs)#
Methods
|
Add new condition function to the check. |
Add condition - the selected metrics scores are greater than the threshold. |
|
Remove all conditions from this check instance. |
|
Run conditions on given result. |
|
Return check configuration. |
|
|
Return check object from a CheckConfig object. |
|
Deserialize check instance from JSON string. |
Return True if the check reduce_output is better when it is greater. |
|
Return check metadata. |
|
Name of class in split camel case. |
|
|
Return parameters to show when printing the check. |
Return the values of the metrics for the dataset provided in a {metric: value} format. |
|
Remove given condition by index. |
|
|
Run check. |
|
Run check. |
|
Serialize check instance to JSON string. |