はじめに
例

Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Help us improve these docs. Take our quick survey.
W&B を Deepchecks と統合し、自動テストと実験管理によって ML モデルとデータセットを検証します。
import wandb
wandb.login()
# deepchecksからチェックをインポートする
from deepchecks.checks import ModelErrorAnalysis
# チェックを実行する
result = ModelErrorAnalysis()
# 結果をwandbにプッシュする
result.to_wandb()
import wandb
wandb.login()
# deepchecksからfull_suiteテストをインポートする
from deepchecks.suites import full_suite
# DeepChecksテストスイートを作成して実行する
suite_result = full_suite().run(...)
# 結果をwandbにプッシュする
# wandb.initに必要な設定や引数をここで渡すことができる
suite_result.to_wandb(project="my-suite-project", config={"suite-name": "full-suite"})

Was this page helpful?