MultiModelPerformanceReport#
- class MultiModelPerformanceReport[source]#
Summarize performance scores for multiple models on test datasets.
- 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
- alternative_scorersDict[str, Callable] , default: None
Deprecated, please use scorers instead.
- 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, alternative_scorers: Optional[Dict[str, Callable]] = None, n_samples: int = 1000000, random_state: int = 42, **kwargs)[source]#
- __new__(*args, **kwargs)#
Methods
Add new condition function to the check. |
|
Remove all conditions from this check instance. |
|
Run conditions on given result. |
|
Return check instance config. |
|
Return check object from a CheckConfig object. |
|
Deserialize check instance from JSON string. |
|
Return check metadata. |
|
Name of class in split camel case. |
|
Return parameters to show when printing the check. |
|
Remove given condition by index. |
|
Initialize context and pass to check logic. |
|
Run check logic. |
|
Serialize check instance to JSON string. |