시작하기
예시

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.
자동화된 테스트와 실험 추적을 사용해 ML 모델과 데이터셋을 검증할 수 있도록 W&B를 Deepchecks와 통합하세요.
import wandb
wandb.login()
# deepchecks에서 check 임포트
from deepchecks.checks import ModelErrorAnalysis
# check 실행
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?