Maximum Likelihood Expectation Maximization¶
Definition¶
Maximum Likelihood Expectation Maximization (MLEM) [1] is an iterative method for solving the inverse problem
especially when the measured data are count-like and are modeled by Poisson statistics. In that setting, MLEM seeks a non-negative solution by maximizing the likelihood of observing \(\mathbf{b}\in\mathbb{R}^M\) given the forward model \(\mathbf{T}\in\mathbb{R}^{M\times N}\).
For a current estimate \(\mathbf{x}^{(k)}\), the update used in this package is
where \(\odot\) and \(\oslash\) denote element-wise product and division (Hadamard product). This multiplicative update keeps non-negative iterates non-negative when the initial guess is non-negative.
Derivation (outline)¶
Assume independent Poisson observations \(b_m \sim \mathrm{Poisson}((\mathbf{T}\mathbf{x})_m)\) for \(m=1,\dots,M\). Ignoring constants independent of \(\mathbf{x}\), the log-likelihood is
Introducing latent contributions and applying the EM procedure yields the fixed-point map in (1). The factor \((\mathbf{T}^\mathsf{T}\mathbf{1}_M)^{-1}\) acts as a sensitivity normalization for each unknown component.
Implementation¶
The implementation of cherab.inversion.statistical.MLEM follows the update in (1) with the following procedure:
Set an initial guess \(\mathbf{x}^{(0)}\) (default is ones).
Compute forward projection \(\mathbf{T}\mathbf{x}^{(k)}\).
Form the ratio \(\mathbf{b} \oslash (\mathbf{T}\mathbf{x}^{(k)})\).
Back-project and normalize by \((\mathbf{T}^\mathsf{T}\mathbf{1}_M)\).
Update \(\mathbf{x}^{(k+1)}\) multiplicatively.
Stop when
or the maximum iteration count is reached.
The solver supports both single-vector data and multi-column data (multiple time slices) with the same element-wise formula.
Notes¶
MLEM typically converges stably but can be slow near convergence.
The method does not require an explicit regularization parameter, unlike L-curve, PRESS, or GCV.
In practice, early stopping often plays the role of implicit regularization.
Example¶
The example is shown in a notebook.