__init__.py 343 B

1234567891011
  1. """W&B callback for xgboost.
  2. Simple callback to get logging for each tree
  3. Use the `wandb_callback` to add `wandb` logging to any `XGboost` model. However, it will
  4. be deprecated in favor of WandbCallback. Use it instead for more features.
  5. """
  6. from .xgboost import WandbCallback, wandb_callback
  7. __all__ = ["wandb_callback", "WandbCallback"]