I just want to say. This is--by far--the best explanation of KL divergence I've found on the internet. Thanks so much!
@unsaturated84823 ай бұрын
The most intelligent people are the one's who are able to explain the hardest concepts in the most intutive way possible. Thanks.
@niofer72472 жыл бұрын
This was actually one of the most helpful videos. Thank you
@liliz1902 Жыл бұрын
KL divergence confused me for so long, and I understood it just by watching your video for one time, thank you very much!
@nericarcasci99192 жыл бұрын
You are unbelievably good at teaching man. You explained it better than they did in my course.
@sumitsp016 күн бұрын
Thank you sir! After watching so many videos, reading articles and talking with chatgpt, this explanation made sense to me and will remain with me forever. Grateful 🙏
@karstenhannes9628 Жыл бұрын
This type of explanation is perfect! First boiling the problem down to the most intuitive understanding and from there deduce the general formula. Thanks so much!
@jimmygan8013 жыл бұрын
holy smoke, you are legit GOAT. so concise yet clear and intuitive explanation.
@balasubramanyamevani77522 жыл бұрын
@3:26 I don't understand how are we normalizing by raising it to the power of 1/N. Could you please explain that?
@Chris-zg1me2 жыл бұрын
Same question here. This is a fantastic explanation but it defeats me when you mention “we normalize by raising to power of 1/N”. Why do we do this? What does that do or mean to the data? Thanks for making this video! Awesome!
@vyasraina39302 жыл бұрын
I think the 1/N gives us the 'average' probability of a single toss; e.g. if we had a fair coin and had 3 tosses, the probability of our sequence would be 1/2 * 1/2 * 1/2 = 1/8. If we had ten tosses, the probability of the sequence would be 1/(2^10). These numbers are currently incomparable. If we now look at the probability of the sequence to the power of 1/N, where N is the number of tosses, then suddenly they are the same ... which is what we would want .... it basically normalizes the probability sequence!
@aniruddhajoshi7496 Жыл бұрын
@@vyasraina3930 thanks for the explaination! in general why is power 1/N more important than let's say multiplying by 1/N?
@franklyvulgar18 ай бұрын
@@vyasraina3930 so basically the 1/N gets rid of the number of tosses/sample size and in your case of a fair coin makes it so the probability would be 1/2 regardless of N by getting rid of the N (exponent in your probability sequence)
@RedwanKarimSony_napstar_14553 ай бұрын
Best explanation of the KL divergence in KZbin for sure.... Thanks...
@baskaisimkalmamisti3 жыл бұрын
I didn't expect that good explanation from a randomly suggested youtube video
@marcegger74112 жыл бұрын
Great video! Loved the intuition behind the KL distribution. For some thinking about applications, this is used in the loss function of Variational Auto Encoders, a class of deep networks, and is used to find low dimensionality features of high dimensionality input data as an encoder. (e.g. use this to deconstruct images into "features")
@wynandwinterbach455 Жыл бұрын
I'm just rewatching this video to freshen up my deep learning fundamentals. Super clear video, thank you so much!
@matakos223 жыл бұрын
Thanks so much for this, needed to understand what KL Divergence is for a paper I'm reading and you just saved me so much time!
@germangarcia5599 Жыл бұрын
One of the most useful explanations ever. Thanks!!
@ian-haggerty9 ай бұрын
Best explanation on the interwebs!
@sharingpurpose237 Жыл бұрын
Bro, this intuition was not normal, u r just genius!!
@SunilKumarSamji10 ай бұрын
Excellent video. Can someone help me understand why is it called Divergence in the first place? Why are we taking 1/N power to normalise it to sample space, I did not understand the logic behind this.
@drdca82633 жыл бұрын
Thanks, that made the idea make a lot more sense to me. Showing how it arises so nicely from a large sample size, made it feel much more natural.
@haresage61102 жыл бұрын
Great explanation! One technical remark I have is that (from my understanding) KL divergence is not technically a measure of distance, since it's not symmetric ( Dlk(P||Q) != Dlk(Q||P) ).
@charchitsharma890211 ай бұрын
Yes, that's why it's called divergence instead of distance.
@drondasgupta93782 жыл бұрын
Thanks for the brilliant, intuitive and crystal-clear explanation!
@alkanair7325 Жыл бұрын
Thank you so much for this content. By far the explanation of KL Divergence seen so far
@adityakulkarni55779 ай бұрын
Perfectly explained in 5 minutes. Wow.
@farshadsaberi27403 жыл бұрын
Thanks for the simple, yet helpful, explanation!
@moopoo1232 жыл бұрын
Thanks Adian! The connection back to cross entropy loss is cool. Slowly coming together for me.
@zukofire6424 Жыл бұрын
this was great and super useful in my internship (which really just started), Thanks! :)
@alecpanayotov2 жыл бұрын
This is awesome, thanks for breaking it down Adian
@karthikeyans3 Жыл бұрын
Great video. Thanks for sharing. Really intuitive.
@Darkev773 жыл бұрын
Awesome video, but at 3:27, on what basis did we take the log?
@adianliusie5903 жыл бұрын
That's a good question which I'm not sure I could answer too well. One could claim that the log function makes numbers more readable, and often when we deal with large/small numbers we log expressions first since the log operation is reversible and squeezes the range into a smaller one (e.g. e^10, about 22000, becomes 10), like is done with things like log probabilities. It could also just be mathematical convenience to drop the powers so that the overall expression looks much simpler. However I think you'd find a more satisfying answer by looking in the direction of entropy, as entropy is defined as the expected log probabilities of a distribution. Since the KL is interlinked tightly with entropy, something may drop out there which will show that logging the ratio makes the expression more natural and intuitive. I'd have to think bout it more, and maybe I'll make a video on entropy in the near future, but if I figure anything out I'll get back to you then.
@Darkev773 жыл бұрын
@@adianliusie590 wow that’s such a great answer. I truly appreciate that! And yeah, what you said makes sense, and with regards to entropy you’re very right; since entropy is the expected/avg information of a distribution of random events and KL div measures the *relative* difference in expected information between two distributions.
@skeletonrowdie17683 жыл бұрын
Hi Darkev and Adian, there is another video on youtube (study squad academy) which explains the KL divergence from the perspective of Jensen's inequality. The main argument for taking the log is that it is a concave function, which does somewhat touch Adian's comment.
@AashraiRavooru Жыл бұрын
A question here why will the number of heads and number of tails be the same for both the distributions at 3:04. If the probabilities for both the coins are different then the number of occurrences of heads and tails can also be different
@rednas1954 ай бұрын
I think the reason is because we do one experiment where we note the amount of tails and heads. We then assume that the observations are modelled by the probability distribution from the true coin. Now we want to figure out what the probability is that the amount of tails and heads we observed could be coming from coin 2. So the number of tails and heads are the same since they are literally the same, there is only one "measurement" being done.
@yashrathi68622 жыл бұрын
Hi, I don't get why you assume that the nH and nT for the coin two would be the same as the coin 1?
@Marcus-ok2jy2 жыл бұрын
Yeah i don't get it either, any explainations anyone?
@Drewbie_T2 жыл бұрын
@@Marcus-ok2jy nH and nT are just the number of heads and tails generated in the sequence by the 'true coin', not by coin 2.. i.e., if i have a true coin and I flip it a few times I may get H,H,T,H (nH=3, nT=1) and you will notice that nH/N=0.75 and nT/N =0.25 which is not equal to p1 and p2 respectively. However, if were to flip the coin many more times, infinitely more times, we would notice the number of heads is the same as the number of tails. Thus, he is saying in the limit of a sufficient amount of coin flips, we will notice nH/N = 0.5 and nT/N = 0.5.
@Marcus-ok2jy2 жыл бұрын
@@Drewbie_T Hi Andrew, But in 3:21 , the formula P(observations|coin 2) looks at the nH and nT of Coin 2 does it not? This is so that the KL divergence could take into the account the disparity in probability distribution between the 2 coins.
@Drewbie_T2 жыл бұрын
@@Marcus-ok2jy No it does not, it is only looking at nH and nT of the true coin. Coin 2 is not being flipped at all. The only part where coin 2 comes in is after flipping the true coin (which has probability p1 heads and p2 tails), we obtain some chain of outcomes (i.e., H,H,T,H,T,T). Now that we have flipped the true coin and obtained an outcome, we look at the coin 2 probabilities and say, how likely is it that this sequence (H,H,T,H,T,T) could have come from coin 2? If coin 2 has .95 probability of landing on heads every time, it is unlikely that we would see an equal number of heads and tails in the distribution.
@adytya2 жыл бұрын
It's because we first flip a coin N times and record the number of heads (nH) and the number of tails (nT). It is assumed here that the coin used here repesents the real coin (which has p1 probability for head and p2 probability for tail). We are now interested in finding how close coin 2 can mimic the real coin's flips. And since the real coin produced nH heads and nT tails during our experiment, we use the same values. Hope this helped.
@brianlee496611 ай бұрын
Thank you so much for this video and clear explanation!
@kukuster Жыл бұрын
Thanks for the explanation!! One thing is, formulas were confusing with how you denoted *q1* & *q2* for probabilities for coin 2, instead of *p2* & *q2=1-p2*
@cuongnguyenuc177611 ай бұрын
Great video! Can you make a video about soft actor critic?
@soroushmehraban2 жыл бұрын
Very well-explained. Thank you!
@adamtaylor2142 Жыл бұрын
Great content! Thank you.
@clairewang83702 жыл бұрын
This is so intuitive!!!!!!!!!❤
@Luca-yy4zh3 жыл бұрын
Finally a simple explanation
@gaoyang66083 жыл бұрын
thx for sharing very helpful and intuitive.
@researchmedicine69503 жыл бұрын
Keep the vids coming this is so so useful
@user-sx4wm5ls5q3 жыл бұрын
Wow this is an amazing explanation. So is KL divergence equivalent to Bayes factor with equal priors?
@alifarrokh98632 жыл бұрын
Very great explanation!
@petercourt2 жыл бұрын
Amazing explanation, thanks!
@filipedstrom44622 жыл бұрын
Concise and clear, thank you!
@jessechen65413 жыл бұрын
excellent explanation
@reformed82462 жыл бұрын
thanks a lot ! 5min for explaining what I could'nt understand in hours
@ramendrachaudhary97842 жыл бұрын
Very well explained! Thank you!
@openroomxyz4 ай бұрын
Thanks for creating this video is awsome
@DC-gq6ww3 жыл бұрын
Thank you! May I ask how you made the video? I want the numbers to move like they do in your show. It looks great and maintains comprehensibility by bringing it to life! We have to make a video about AIC for our neuroinformatics class, so your video would be a nice introduction to the topic anyway... You do it a little better than our prof^^
@adianliusie5903 жыл бұрын
This might break the magic a bit but I just use plain old fashioned Microsoft power point! To move the equations I use the inbuilt animations functionality, though it can get a bit tedious to make everything move exactly how you’d like to. But best of luck on making your video.
@DC-gq6ww3 жыл бұрын
@@adianliusie590 thx for your answer! Good to know. It doesn't break the magic. I just use another program and I am a noob at some points
@ferkstkojtt2 жыл бұрын
Dude just plops in some God-tier eye openers in the credits and leaves. Never realized this relationship between KL and cross-entropy loss.
@hackercop3 жыл бұрын
This was very good have liked and subscribed
@JingyueWu Жыл бұрын
Nice video! Can you say something about alternatives? E.g. why wouldn't mean squared error (of two probability distributions) work as well?
@blakete2 жыл бұрын
This was awesome. Thank you.
@yatinarora96502 жыл бұрын
thank you so much, very nicely explained
@annaly23182 жыл бұрын
Very good video. Thanks so much!
@longh Жыл бұрын
super helpful! Thank you
@thapargerrard1232 жыл бұрын
Great video . Thanks.
@deerwithantlers6 ай бұрын
Useful video.
@kushalneo3 ай бұрын
Great Video
@xxluapxx2 жыл бұрын
Thanks for the explanation. With the RLHF stuff happening in ChatGPT, does anyone know why they choose to use KL divergence instead of Cross-entropy loss when calculating the RL policy penalty?
@ian-haggerty9 ай бұрын
So a Kale Divergence of zero means identical distributions? What do the || lines mean?
@ananya_sutradhar Жыл бұрын
Just perfect!
@unbridled_exciton2 жыл бұрын
This is gold!
@Gathanokos3 жыл бұрын
This video is amazing
@juliocardenas44852 жыл бұрын
Excellent!!!
@akshaydongare21362 жыл бұрын
Thank you!
@zyzhang1130 Жыл бұрын
KL loss is not exactly equivalent to cross entropy loss right
@gzitterspiller Жыл бұрын
I still dont know why the log appears there.
@Messiah-0006 ай бұрын
It allows to factorize by addition rather than multiplication, since the log is a strictly monotonically increasing function. Practically speaking, this is more efficient to compute than a product of terms.
@yihongli350 Жыл бұрын
beautiful!
@omarrayyann27 күн бұрын
Thanks!
@amrahmed20093 жыл бұрын
Thanks very much.
@vi5hnupradeep3 жыл бұрын
Thank you so much
@BillHaug Жыл бұрын
...tremendous!
@gottlobfreige10752 жыл бұрын
So, Why is KL Divergence is not symmetric?
@akidnag Жыл бұрын
Only that is not a distance ('cause is not symmetric), but a pseudo distance. Great video!
@onamixt Жыл бұрын
Why raise to 1/n power, why use log? Why don't we use just sum(P/Q)?
@yingliu3502 жыл бұрын
The vedio is good, but what confuses me is the correctness of the division. Sometimes,we have different probability(like NH = NT = 1,and p1=q2,p2=q1),but the division result is 1,which mean they are similar ,or same. It is wrong actually. So, may this explanation is just coinstance, or I have made some mistakes. Hopefully you can help me.(If my pool english make it confusing, I am sorry for that)
@dogukan4633 жыл бұрын
Nice video :)
@treksis2 жыл бұрын
😁😁😁gotcha. super ez explanation
@hamzeasadi6712 жыл бұрын
Greaaaat job
@salehmontazeran11302 жыл бұрын
Awesome
@yawenliu-p7m7 күн бұрын
小猫到此一游
@Justin-zw1hx Жыл бұрын
when you say "likelyhood of the observation of each coin", you really mean "probability" instead of "likelyhood", right?
@joshholder3592 жыл бұрын
So fire
@_jiwi26743 жыл бұрын
great explanation, would be perfect if you speaked slower
@cliveemary48062 жыл бұрын
nice
@ian-haggerty9 ай бұрын
@ViralPanchal97 Жыл бұрын
I love you Biradr
@1.41422 жыл бұрын
It has my initials
@yegounkim1840 Жыл бұрын
It is not a measure of distance between distributions!
@zjy29362 жыл бұрын
It’s technically not “distance”
@KemalCetinkaya-i3q9 ай бұрын
wowowowo
@semionababo2 ай бұрын
IMO this video gives pretty bad explanation of the essence just hiding by algebraic transformations. Found a much better video that actually explains why we use log() without "believe me or not...": kzbin.info/www/bejne/p2GknH5ulr6Vgrs