|
|
|
|
|
by Gravityloss
3134 days ago
|
|
How Bayes kinda works, or how I see it. Conditional probability (with some caveats that someone in the comments can fill in on): P(a,b) = P(b,a)
P(a|b) * P(b) = P(b|a) * P(a)
P(a|b) = P(b|a) * P(a) / P(b)
a can be model and b can be data so it becomes P(model | data) =
P(data | model) * P(model) / P(data)
We have or can estimate the things on the right side. We want to ultimately get the thing on the left side. |
|