---
title: Weights & Biases
---

>[Weights & Biases](https://wandb.ai/)는 AI 모델을 학습 및 미세 조정하고 AI 애플리케이션을 개발하기 위한 AI 개발자 플랫폼 제공업체입니다.

`Weights & Biases` 제품은 학습 중 메트릭과 아티팩트를 로깅하고 코드 실행을 추적하는 데 사용할 수 있습니다.

LangChain 내에서 `Weights & Biases` 제품을 사용하는 몇 가지 주요 방법이 있습니다:
- `wandb_tracing_enabled` 사용
- `Weave` 경량 툴킷 사용
- `WandbCallbackHandler` 사용 (deprecated)


## wandb_tracing_enabled

[사용 예제](/oss/python/integrations/providers/wandb_tracing)를 참조하세요.

[W&B 문서](https://docs.wandb.ai/guides/integrations/langchain)를 참조하세요.

```python
from langchain_community.callbacks import wandb_tracing_enabled

Weave

W&B 문서를 참조하세요.

WandbCallbackHandler

참고: WandbCallbackHandlerwandb_tracing_enabled를 위해 deprecated 되고 있습니다. 사용 예제를 참조하세요. W&B 문서를 참조하세요.
from langchain_community.callbacks import WandbCallbackHandler

---

<Callout icon="pen-to-square" iconType="regular">
    [Edit the source of this page on GitHub.](https://github.com/langchain-ai/docs/edit/main/src/oss/python/integrations/providers/wandb.mdx)
</Callout>
<Tip icon="terminal" iconType="regular">
    [Connect these docs programmatically](/use-these-docs) to Claude, VSCode, and more via MCP for    real-time answers.
</Tip>
I