Skip to main content
Most of the models in supervised machine learning are estimated using the ML principle. In this section we introduce the principle and outline the objective function of the ML estimator that has wide applicability in many learning tasks. Assume that we have mm examples drawn from a data generator that generates the vectors xX\mathbf{x} \in \mathcal{X} independently and identically distributed (i.i.d.) according to some unknown (but fixed) probability distribution function pdata(x)p_{data}(\mathbf{x}). X={x1,,xm}\mathbb{X} = \{ \mathbf{x}_1, \dots, \mathbf{x}_m \} Let pmodel(x,w)p_{model}(\mathbf x, \mathbf w) a parametric family of probability distributions (our hypothesis set) over the same space that attempts to approximate (model) pdata(x)p_{data}(\mathbf{x}) as closely as possible using a suitable estimate of the parameter vector w\mathbf w. The ML estimator for w\mathbf w is defined as: wML=argmaxwpmodel(X;w)\mathbf w_{ML} = \underset{\mathbf w}{\text{argmax}} \, p_{model}(\mathbb X; \mathbf w) =argmaxwi=1mpmodel(x(i);w)= \underset{\mathbf w}{\text{argmax}} \prod_{i=1}^m p_{model}(\mathbf x^{(i)}; \mathbf w) =argmaxwi=1mlogpmodel(x(i);w)= \underset{\mathbf w}{\text{argmax}} \sum_{i=1}^m \log p_{model}(\mathbf x^{(i)}; \mathbf w) =argmaxw1mi=1mlogpmodel(x(i);w)= \underset{\mathbf w}{\text{argmax}} \frac{1}{m} \sum_{i=1}^m \log p_{model}(\mathbf x^{(i)}; \mathbf w) =argmaxwExp^datalogpmodel(x;w)= \underset{\mathbf w}{\text{argmax}} \, \mathbb{E}_{\mathbf{x} \sim \hat p_{data}} \log p_{model}(\mathbf x; \mathbf w) From the last expression it is evident that in ML estimation two distributions are involved: p^data\hat p_{data} and pmodelp_{model}. We can also make use of our intuition that a good estimator would minimize the distance between the two empirical distributions therefore the KL divergence: KL(p^datapmodel)=Exp^data[logp^data(x)logpmodel(x,w)]KL( \hat p_{data} \| p_{model} ) = \mathbb{E}_{\mathbf x \sim \hat p_{data}} \left[\log \hat p_{data}(\mathbf x) - \log p_{model}(\mathbf x, \mathbf w) \right] The first term is independent of the model and therefore we see that the KL and the ML estimator expressions are identical except from the sign. Therefore we conclude that minimizing KL divergence, maximizes the likelihood function. From information theory we know that the KL divergence and the cross entropy (CE) are related via the expression CE=H(p^data,pmodel)=KL(p^datapmodel)+H(p^data)CE = H(\hat p_{data}, p_{model}) = KL( \hat p_{data} \| p_{model} ) + H(\hat p_{data}) Given that p^data\hat p_{data} is given in supervised learning, H(p^data)H(\hat p_{data}) is constant and therefore we can conclude that in this case, CE is equivalent to the KL i.e. minimizing the KL divergence, is equivalent in minimizing cross-entropy (CE). Therefore the expression the only need to minimize which we will call the CE cost function (also known as log loss) is: L(w)=CE=Exp^datalogpmodel(x,w)L(\mathbf w) = CE = - \mathbb{E}_{\mathbf x \sim \hat p_{data}} \log p_{model}(\mathbf x, \mathbf w) Cross entropy is a very generic objective (loss) function that is applicable to any supervised learning problem that uses maximum likelihood to estimate a model.

Visualizing MLE with a Gaussian

To visualize the above, let’s start with a simple Gaussian distribution.
Normal Distribution PDF

Standard normal distribution probability density function.

We can retrieve the probability of events happening, e.g. x=3.0:
We can also easily calculate the joint probability of i.i.d. (independent and identically distributed) events:

Comparing Hypotheses

Assume now that someone is giving us an array of values and ask us to estimate a pmodelp_{model} that is a ‘good fit’ to the given data. How can we go about solving this problem with Maximum Likelihood Estimation (MLE)? Notice that probability and likelihood have a reverse relationship. Probability attaches to possible results; likelihood attaches to hypotheses. The likelihood function gives the relative likelihoods of different values for the parameter(s) of the distribution from which the data are assumed to have been drawn, given those data.
Comparing Hypotheses

Two competing hypotheses (μ=5 in red, μ=7 in blue) with data points shown on the x-axis. Which hypothesis better explains the data?

Computing Log-Likelihood

It’s important to safeguard against underflow that may result from multiplying many numbers (for large datasets) that are less than 1.0 (probabilities). So we do the calculations in the log domain using the identity: log(a×b)=log(a)+log(b)\log(a \times b) = \log(a) + \log(b) Let’s look at a function that calculates the log-likelihood for two hypotheses given the data:
We can readily compare the two hypotheses according to the maximum likelihood criterion. Note that because the log\log is a monotonic function, the conclusion as to which hypothesis makes the data more likely is the same in the natural or the log\log domain.
It seems that the second hypothesis pmodel(xw)=N(xμ2,σ22)p_{model}(x \mid \mathbf{w}) = \mathcal{N}(x \mid \mu_2, \sigma_2^2) is preferred compared to the first.

Searching the Parameter Space

We can search the hypothesis space (parameter space) for the best parameter set w\mathbf w:
Negative Log Likelihood Surface

Negative log-likelihood as a function of the mean parameter μ for different values of standard deviation σ. The optimal μ is around 6 (vertical dashed line).

But there is a better method than exhaustively searching in the parameter space. We developed a method that incrementally minimizes a loss function that is ultimately linked to the concept of entropy - the cross entropy (CE) that for the supervised learning problem as shown in the notes has a lot to do with minimizing the KL divergence - a type of probabilistic ‘distance’ between p^data\hat p_{data} and pmodelp_{model}. This method is the Stochastic Gradient Descent as described in the SGD lecture.

References

  1. Maximum Likelihood Estimation of Gaussian Parameters - Detailed derivation of MLE for Gaussian parameters
  2. Section 4.1 - Numerical computation - Deep Learning Book
  3. Bayes for beginners - probability and likelihood