Getting Started
To use DeepChecks with W&B you will first need to sign up for a W&B account. With the W&B integration in DeepChecks you can quickly get started like so:Example
This Report shows off the power of using DeepChecks and W&B.
How to integrate W&B with DeepChecks.
import wandb
wandb.login()
# import your check from deepchecks
from deepchecks.checks import ModelErrorAnalysis
# run your check
result = ModelErrorAnalysis()
# push that result to wandb
result.to_wandb()
import wandb
wandb.login()
# import your full_suite tests from deepchecks
from deepchecks.suites import full_suite
# create and run a DeepChecks test suite
suite_result = full_suite().run(...)
# push thes results to wandb
# here you can pass any wandb.init configs and arguments you need
suite_result.to_wandb(project="my-suite-project", config={"suite-name": "full-suite"})

Was this page helpful?