Positive Elbo (evidence lower bound) #2083
Answered
by
torfjelde
organic-chemistry
asked this question in
Q&A
Replies: 1 comment 6 replies
-
This is sensible when talking about discrete distributions, but not when we're working with continuous distributions. Simple example: julia> using Distributions
julia> pdf(Normal(0, 1e-3), 0)
398.9422804014327
julia> logpdf(Normal(0, 1e-3), 0)
5.988816745777464 And given that you have data which is just a bunch of zeros, this doesn't seem unreasonable:) |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to use the elbo (evidence lower bound) to perform model selection using variationnal inference.
However I started to notice that sometimes I get positive values for the elbo.
To my knowledge it is a lower bound of the log of a probability, so it should not be higher than 0.
Is it a mistake from my part and it can be higer than 0 or is there an implementation problem?
Best
Beta Was this translation helpful? Give feedback.
All reactions