CheckResult¶
- class CheckResult[source]¶
Class which returns from a check with result that can later be used for automatic pipelines and display value.
Class containing the result of a check
The class stores the results and display of the check. Evaluating the result in an IPython console / notebook will show the result display output.
- Parameters
- valueAny
Value calculated by check. Can be used to decide if decidable check passed.
- displayList[Union[Callable, str, pd.DataFrame, Styler]] , default: None
Dictionary with formatters for display. possible formatters are: ‘text/html’, ‘image/png’
- headerstr , default: None
Header to be displayed in python notebook.
- __new__(*args, **kwargs)¶
Attributes
Return priority of the current result. |
|
Methods
|
Display the check result or return the display as widget. |
|
Display the check result from a json received from a to_json. |
Return header for display. |
|
Return if this check have condition results. |
|
Return if this check have dsiplay. |
|
Return if this check have not passing condition results. |
|
Process the conditions results from current result and check. |
|
|
Display check result. |
|
Return check result as json. |
|
Export check result to wandb. Parameters ---------- dedicated_run : bool , default: None If to initiate and finish a new wandb run. If None it will be dedicated if wandb.run is None. kwargs: Keyword arguments to pass to wandb.init. Default project name is deepchecks. Default config is the check metadata (params, train/test/ name etc.). |