Problem Definition
#1
10
1
2
#2
11
3
3
#3
12
4
1
We want to find the model which well explains our target variable(y) with x variables. The model looks like this
We can evaluate how precise our model it is with a fluctuation of our error. When we assume that our expected error is zero, the fluctuation represents the size of precision.
Good for Intuition: E[∣ϵ−E(ϵ)∣]=E[∣ϵ∣]
Good for calculation: E[ϵ2]​=σϵ​​
If we make a probabilistic assumption for error, we can easily find the fluctuation. For example, Error can be −2,−1,0,1,2 with the probability 51​. Then E[∣ϵ∣]=1. However, in a real world problem, we couldn't make a probabilistic assumption for error. Even if we do, we just assume the normal with unknown variance. So to know the precision we need to estimate the sigma of error.
MLE: σϵ​^​=nϵ12​+⋯+ϵn2​​​ | σϵ​^​=n−factornumϵ12​+⋯ϵn−factornum2​​​
Last updated