Metadata-Version: 2.1
Name: deepchecks
Version: 0.6.0.dev1
Summary: Package for validating your machine learning model and data
Home-page: https://github.com/deepchecks/deepchecks
Download-URL: https://github.com/deepchecks/deepchecks/releases/download/0.6.0.dev1
Requires-Dist: pandas (>=1.1.5)
Requires-Dist: numpy (>=1.19)
Requires-Dist: scikit-learn (>=0.24.2)
Requires-Dist: jsonpickle (>=2)
Requires-Dist: typing-extensions (>=3.7.4.3)
Requires-Dist: tqdm (>=4.62.3)
Requires-Dist: category-encoders (>=2.3.0)
Requires-Dist: statsmodels (>=0.11.0)
Requires-Dist: scipy (>=1.4.1)
Requires-Dist: plotly (>=5.5.0)
Requires-Dist: matplotlib (>=3.2.2)
Requires-Dist: dataclasses (>=0.6) ; python_version < "3.7"
Requires-Dist: ipython (<8,>=5.5.0) ; python_version < "3.8"
Requires-Dist: ipykernel (>=4.10.1) ; python_version < "3.8"
Requires-Dist: ipywidgets (>=7.5.0) ; python_version < "3.8"
Requires-Dist: ipython (<8,>=7.15.0) ; python_version >= "3.8"
Requires-Dist: ipykernel (>=5.3.0) ; python_version >= "3.8"
Requires-Dist: ipywidgets (>=7.6.5) ; python_version >= "3.8"
Provides-Extra: vision
Requires-Dist: pytorch-ignite (>=0.4.8) ; extra == 'vision'
Requires-Dist: opencv-python (>=4.5.5.62) ; extra == 'vision'
Requires-Dist: albumentations (>=1.1.0) ; extra == 'vision'
Requires-Dist: kaleido (>=0.2.1) ; extra == 'vision'
Requires-Dist: imgaug (>=0.4.0) ; extra == 'vision'
Requires-Dist: requests (>=2.22.0) ; extra == 'vision'
Requires-Dist: seaborn (>=0.1.0) ; extra == 'vision'

/deepchecks-0.6.0.dev1
.tar.gz
Author: deepchecks
Author-email: info@deepchecks.com
License: UNKNOWN
Project-URL: Documentation, https://docs.deepchecks.com
Project-URL: Bug Reports, https://github.com/deepchecks/deepchecks
Project-URL: Source, https://github.com/deepchecks/deepchecks
Project-URL: Contribute!, https://github.com/deepchecks/deepchecks/blob/master/CONTRIBUTING.md
Keywords: Software Development,Machine Learning
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Provides-Extra: vision
License-File: LICENSE


|build| |Documentation Status| |pkgVersion| |pyVersions|
|Maintainability| |Coverage Status|

..  image:: https://raw.githubusercontent.com/deepchecks/deepchecks/main/docs/images/deepchecks-logo-with-white-wide-back.png
    :target: https://github.com/deepchecks/deepchecks

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 <https://docs.deepchecks.com/?utm_source=pypi.org&utm_medium=referral&utm_campaign=readme>`__.

Installation
------------

Using pip
~~~~~~~~~

.. code:: bash

    pip install deepchecks #--upgrade --user

Using conda
~~~~~~~~~~~

.. code:: bash

    conda install -c deepchecks deepchecks

.. |build| image:: https://github.com/deepchecks/deepchecks/actions/workflows/build.yml/badge.svg
.. |Documentation Status| image:: https://readthedocs.org/projects/deepchecks/badge/?version=latest
   :target: https://docs.deepchecks.com/en/latest/?badge=latest
.. |pkgVersion| image:: https://img.shields.io/pypi/v/deepchecks
.. |pyVersions| image:: https://img.shields.io/pypi/pyversions/deepchecks
.. |Maintainability| image:: https://api.codeclimate.com/v1/badges/970b11794144139975fa/maintainability
   :target: https://codeclimate.com/github/deepchecks/deepchecks/maintainability
.. |Coverage Status| image:: https://coveralls.io/repos/github/deepchecks/deepchecks/badge.svg?branch=main
   :target: https://coveralls.io/github/deepchecks/deepchecks?branch=main


