elemlds 9 update

This commit is contained in:
Tom Zuidberg
2026-02-10 14:40:49 +01:00
parent c394ee2cce
commit 4707650c58
2 changed files with 17 additions and 2 deletions

View File

@@ -5,3 +5,18 @@ Goal: predict output class $\mathcal{C}$ from measurements $\text{x}$ by minimiz
>$$p(X,Y)=\frac{p(X|Y)p(Y)}{p(X)}$$
---
$posterior = \frac{likelihood \cdot prior}{normalization factor}$
==NOTE: Learn Normal/Gaussian Distribution by heart!==
univariate:
$$
\mathcal{N} (x|\mu, \sigma^2) = \frac{1}{\sqrt{2\pi}\sigma}\exp\left(-\frac{(x-\mu)^2}{2\sigma^2}\right)
$$
multivariate:
$$
\mathcal{N}(\text{x}|\mu, \Sigma) = \frac{1}{(2\pi)^{D/2}|\Sigma|^{1/2}}\exp\left(-\frac{1}{2} (\text{x}-\mu)^\top \Sigma^{-1}(\text{x}-\mu) \right)
$$