Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 2.19 KB

DESCRIPTION.rst

File metadata and controls

52 lines (37 loc) · 2.19 KB

build pkgVersion pyVersions Maintainability Coverage Status

image

Deepchecks is a Python package for comprehensively validating your machine learning models and data with minimal effort. This includes checks related to various types of issues, such as model performance, data integrity, distribution mismatches, and more.

What Do You Need in Order to Start Validating?

Depending on your phase and what you wise to validate, you'll need a subset of the following:

  • Raw data (before pre-processing such as OHE, string processing, etc.), with optional labels
  • The model's training data with labels
  • Test data (which the model isn't exposed to) with labels
  • A model compatible with scikit-learn API that you wish to validate (e.g. RandomForest, XGBoost)

Deepchecks validation accompanies you from the initial phase when you have only raw data, through the data splits, and to the final stage of having a trained model that you wish to evaluate. Accordingly, each phase requires different assets for the validation. See more about typical usage scenarios and the built-in suites in the docs.

Installation

Using pip

pip install deepchecks #--upgrade --user

Using conda

conda install -c deepchecks deepchecks