W&B로 트리 모델을 추적하세요.
Documentation IndexFetch the complete documentation index at: https://translations.mintlify.app/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://translations.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
wandb
from wandb.integration.lightgbm import wandb_callback, log_summary import lightgbm as lgb # W&B에 메트릭 기록 gbm = lgb.train(..., callbacks=[wandb_callback()]) # 피처 중요도 플롯을 기록하고 모델 체크포인트를 W&B에 업로드 log_summary(gbm, save_model_checkpoint=True)