Bayesian Inference is associated with computational complexity because of the need to compute integrals on a state space
From a computational point of view, implementing an integral on a certain space means iterating over all the elements of that space, so \(\int_{\mathcal{X}} f(\cdot) dx\) gets implemented (in Pseudo-CPP) as
for(int i=0; i<X.size(); ++i) f(X[i]);
with
vector<T> X
vector<>
has been used as container because in order to compute the integral we only the need the space to be iterablef()
and containing the element-specific logicT x[i]
elementTypical examples includes
It is the necessary step to transform Likelihood in Posterior in fact
\[ P(X | Y) = \frac{P(Y | X)P(X)}{P(Y)} \]
which is equivalent to
\[ P(X | Y) = \frac{ P(Y | X) P(X) }{ \int_{\mathcal{X}} P(Y | X) dP(X) } \]
and the denominator integral, leading to the normalization constant, scales \(O(N)\) with \(\mathcal{X}\) dimensionality
The Marginalization consists of integrating over a full subspace in the PDF Domain so to obtain a new PDF / Scalar
For example let's decompose the \(\mathcal{X}\) PDF Domain so that \(\mathcal{X} = \mathcal{X'} \cup \mathcal{Z}\) so the marginalization over \(\mathcal{Z}\) is defined as
\[ P(X') = \int_{\mathcal{Z}} P(X',Z) dP(Z) \]
Also this integral is \(O(N)\) with \(\mathcal{Z}\) dimensionality
Given a certain \(P(X)\) Probability Space or \(P(X|Y)\) Conditional Probability Space, computing an estimation for a certain function \(f(x)\) over the state space means computing the following integral
\[ E_{[P(X|Y)]}(f(x)) = \int_{\mathcal{X}} f(x)dP(X|Y) = \int_{\mathcal{X}} f(x)P(X|Y)dx \]
which again scales \(O(N)\) with the \(\mathcal{X}\) dimensionality
or
or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up
Syntax | Example | Reference | |
---|---|---|---|
# Header | Header | 基本排版 | |
- Unordered List |
|
||
1. Ordered List |
|
||
- [ ] Todo List |
|
||
> Blockquote | Blockquote |
||
**Bold font** | Bold font | ||
*Italics font* | Italics font | ||
~~Strikethrough~~ | |||
19^th^ | 19th | ||
H~2~O | H2O | ||
++Inserted text++ | Inserted text | ||
==Marked text== | Marked text | ||
[link text](https:// "title") | Link | ||
 | Image | ||
`Code` | Code |
在筆記中貼入程式碼 | |
```javascript var i = 0; ``` |
|
||
:smile: | ![]() |
Emoji list | |
{%youtube youtube_id %} | Externals | ||
$L^aT_eX$ | LaTeX | ||
:::info This is a alert area. ::: |
This is a alert area. |
On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?
Please give us some advice and help us improve HackMD.
Syncing