기술 가이드

KL Divergence

Kullback-Leibler (KL) divergence measures the expected extra information cost of using one probability distribution to represent another.

  • 3분 읽기
  • 마지막 업데이트
이 페이지에서3분 읽기
  1. 개요
  2. 심층 분석
  3. 전략적 영향
  4. The Future of KL Divergence
  5. 실제 구현
  6. 위험 및 가드레일
  7. 구현 로드맵
  8. 계속 탐색하세요
  9. 자주 묻는 질문

개요

It is nonnegative but asymmetric, so swapping the reference and comparison distributions generally changes the result and can change which modeling choice appears preferable.

심층 분석

For discrete distributions p and q over the same outcomes, KL divergence is D_KL(p||q) = sum over outcomes p(x) log(p(x)/q(x)). It compares q with a reference p, weighting each log ratio by how often the outcome occurs under p. In information theory, it can be interpreted as expected extra coding cost when a code is optimized for q but the true distribution is p. The log base sets the unit: natural logarithms yield nats and base two yields bits. KL divergence is nonnegative and equals zero when the distributions match on outcomes with positive probability under p, subject to support considerations. It is asymmetric: D_KL(p||q) is generally not D_KL(q||p). This makes it unsuitable as a conventional geometric distance. The direction matters in applications such as variational inference, where one distribution is treated as a target and another as an approximation. In the fair-versus-biased coin example, p=(0.5,0.5) and q=(0.9,0.1). The bit-valued contributions are 0.5 log2(0.5/0.9), about -0.424, and 0.5 log2(0.5/0.1), about 1.161. Their sum is about 0.737 bits. Negative individual terms are allowed even though the total divergence is nonnegative. Reversing p and q produces a different value because the weights also change. Support mismatches matter. If p assigns positive probability to an outcome where q assigns zero, the corresponding forward divergence is infinite. If both assign zero, that outcome contributes zero by convention in the discrete sum. For continuous distributions, KL is written as an integral of the log density ratio under P; finiteness requires P to be absolutely continuous with respect to Q. SciPy's entropy function computes Shannon entropy with one distribution and relative entropy when q is provided; check input normalization and direction. KL is useful for comparing distributions, but it does not by itself say whether a model is useful for a downstream decision.

전략적 영향

비용 및 예산

아키텍처 결정은 수년 동안 성능과 운영 비용을 결정합니다.

더 명확한 결정들

기술 교육은 팀이 최신 스택뿐만 아니라 올바른 스택을 선택하는 데 도움이 됩니다.

품질 관리

더 나은 엔지니어링 선택은 생산 시 신뢰성 사고를 줄입니다.

The Future of KL Divergence

Distribution comparisons will be more interpretable when reports state which distribution is the reference, the log base, and how zero-probability events are handled. In model training, teams should connect KL direction to the behavior they want: covering all target modes differs from concentrating an approximation near a dominant mode. Evaluate downstream decisions as well as divergence values, since low distribution mismatch is not itself a guarantee of practical utility. Future pipelines can include support checks and sensitivity to smoothing, making numerical edge cases visible rather than silently altering probabilities.

실제 구현

A hypothetical fair coin distribution p=(0.5,0.5) is compared with q=(0.9,0.1). In bits, D_KL(p||q)=0.5 log2(0.5/0.9)+0.5 log2(0.5/0.1), about 0.737 bits.

A language model is trained to minimize KL from a target token distribution to its predicted distribution. If the predicted probability for a target event is zero, the forward KL cost can become infinite, requiring careful smoothing or model support.

A researcher compares D_KL(p||q) with D_KL(q||p) for two distributions and finds different values. The asymmetry means the metric is not an ordinary distance and has no general triangle inequality.

An analyst uses scipy.stats.entropy(pk, qk) and confirms which argument represents the target distribution because the API's relative-entropy direction follows pk relative to qk.

위험 및 가드레일

  • 하나의 벤치마크를 최적화하면 더 광범위한 시스템 약점을 숨길 수 있습니다.

  • 인프라 및 유지 관리 비용은 종종 과소평가됩니다.

  • 시스템이 더욱 복잡해짐에 따라 보안 및 관찰 가능성의 격차가 커질 수 있습니다.

구현 로드맵

  1. 구현하기 전에 지연 시간, 품질, 비용 목표를 정의하세요.

  2. 현실적인 로드 및 데이터 조건에서 벤치마킹합니다.

  3. 오류, 드리프트 및 사용자 영향에 대한 계측기 모니터링.

  4. 확장하기 전에 롤백 및 사고 대응 경로를 준비하세요.

계속 탐색하세요

Free newsletter

Get the daily AI briefing

Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.

One email each weekday. Unsubscribe in one click. We never sell or share your address.

Test yourself

Take the KL Divergence quiz

Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.

퀴즈 시작

Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation

자주 묻는 질문

What is KL Divergence?

Kullback-Leibler (KL) divergence measures the expected extra information cost of using one probability distribution to represent another. It is nonnegative but asymmetric, so swapping the reference and comparison distributions generally changes the result and can change which modeling choice appears preferable.

In D_KL(p||q), which distribution weights the log-ratio terms?

The sum is weighted by p(x), the reference distribution in this direction.

Why is KL divergence not an ordinary symmetric distance?

The weighting and ratio change when the distributions are exchanged.

For p(x)>0 and q(x)=0, what happens to the corresponding forward KL contribution?

The log ratio has a positive numerator and zero denominator, yielding infinite divergence.

In the fair-versus-biased coin example, why can one summand be negative while total KL remains nonnegative?

Some q probabilities exceed p, giving negative log terms, while the full divergence obeys nonnegativity.

What unit results from using base-two logarithms?

Base two measures information in bits; natural logs produce nats.