Maximum likelihood estimation: Difference between revisions
Line 21: | Line 21: | ||
== Assumptions == | == Assumptions == | ||
MLE has the following assumptions | |||
* $x_0 = 1$ | |||
* $X$ is independent variable, and $y$ is dependent variable | |||
* Residual error $\epsilon ~ N(0,\sigma^2)$ for a constant $\sigma^2$ | |||
* $y$ is independent across observations | |||
== Optimizations with log == | == Optimizations with log == |
Latest revision as of 03:00, 8 May 2024
Maximum likelihood estimation (MLE) is one of the methods to find the coefficients of a model that minimizes the RSS in linear regression. MLE does this by maximizing the likelihood of observing the training data given a model.
Background
Consider objective function
where is the true relationship and is the residual error/noise
We assume that , y values are independent of each other, and
Likelihood function
The likelihood function determines the likelihood of observing the data given the parameters of the model. A high likelihood indicates a good model.
The likelihood of observing the data is the product of observing each data point, given by the probability density function of standard distribution.
The weights are then changed to fit it better, and the process repeats.
Assumptions
MLE has the following assumptions
- $x_0 = 1$
- $X$ is independent variable, and $y$ is dependent variable
- Residual error $\epsilon ~ N(0,\sigma^2)$ for a constant $\sigma^2$
- $y$ is independent across observations
Optimizations with log
Multiplication of many large numbers is computationally expensive. To optimize, the log of the likelihood function is computed. Since log of multiplied values is the sum of log of each value, we simplify the above down to
Loss function
Instead of maximizing the likelihood function, we can minimize the negative of the likelihood function. This way, we can just use OLS.