คู่มือทางเทคนิค
เคแอล ไดเวอร์เจนซ์
Kullback-Leibler (KL) divergence measures the expected extra information cost of using one probability distribution to represent another.
บนหน้านี้อ่าน 3 นาที
ภาพรวม
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.
ความเสี่ยงและรั้ว
การเพิ่มประสิทธิภาพเกณฑ์มาตรฐานหนึ่งรายการสามารถซ่อนจุดอ่อนของระบบในวงกว้างได้
ต้นทุนโครงสร้างพื้นฐานและการบำรุงรักษามักถูกประเมินต่ำไป
ช่องว่างด้านความปลอดภัยและความสามารถในการสังเกตสามารถเพิ่มขึ้นได้เมื่อระบบมีความซับซ้อนมากขึ้น
แผนงานการดำเนินงาน
กำหนดเป้าหมายเวลาแฝง คุณภาพ และต้นทุนก่อนนำไปใช้งาน
เกณฑ์มาตรฐานภายใต้สภาวะโหลดและข้อมูลจริง
การตรวจสอบเครื่องมือเพื่อหาข้อผิดพลาด การเบี่ยงเบน และผลกระทบต่อผู้ใช้
เตรียมเส้นทางการย้อนกลับและการตอบสนองต่อเหตุการณ์ก่อนปรับขนาด
สำรวจต่อไป
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.
เรียนรู้ต่อไป
คำแนะนำที่เกี่ยวข้อง
คำแนะนำเพิ่มเติมที่เลือกสำหรับหัวข้อนี้