The SAEM algorithm for estimating population parameters

From Popix
Jump to navigation Jump to search

Introduction

The SAEM (Stochastic Approximation of EM) algorithm is a stochastic algorithm for calculating the maximum likelihood estimator (MLE) in the quite general setting of incomplete data models. SAEM has been shown to be a very powerful NLMEM tool, known to accurately estimate population parameters as well as having good theoretical properties. In fact, it converges to the MLE under very general hypotheses.

SAEM was first implemented in the $\monolix$ software. It has also been implemented in NONMEM, the R package saemix and the Matlab statistics toolbox as the function nlmefitsa.m.

Here, we consider a model that includes observations $\by=(y_i , 1\leq i \leq N)$, unobserved individual parameters $\bpsi=(\psi_i , 1\leq i \leq N)$ and a vector of parameters $\theta$. By definition, the maximum likelihood estimator of $\theta$ maximizes

\( {\like}(\theta ; \by) = \py(\by ; \theta) = \displaystyle{ \int \pypsi(\by,\bpsi ; \theta) \, d \bpsi}. \)


SAEM is an iterative algorithm that essentially consists of constructing $N$ Markov chains $(\psi_1^{(k)})$, ..., $ (\psi_N^{(k)})$ that converge to the conditional distributions $\pmacro(\psi_1|y_1),\ldots , \pmacro(\psi_N|y_N)$, using at each step the complete data $(\by,\bpsi^{(k)})$ to calculate a new parameter vector $\theta_k$. We will present a general description of the algorithm highlighting the connection with the EM algorithm, and present by way of a simple example how to implement SAEM and use it in practice.

We will also give some extensions of the base algorithm that allow us to improve the convergence properties of the algorithm. For instance, it is possible to stabilize the algorithm's convergence by using several Markov chains per individual. Also, a simulated annealing version of SAEM allows us improve the chances of converging to the global maximum of the likelihood rather than to local maxima.



The EM algorithm

We first remark that if the individual parameters $\bpsi=(\psi_i)$ are observed, estimation is not thwarted by any particular problem because an estimator could be found by directly maximizing the joint distribution $\pypsi(\by,\bpsi ; \theta) $.

However, since the $\psi_i$ are not observed, the EM algorithm replaces $\bpsi$ by its conditional expectation. Then, given some initial value $\theta_0$, iteration $k$ updates ${\theta}_{k-1}$ to ${\theta}_{k}$ with the two following steps:


  • $\textbf{E-step:}$ evaluate the quantity

\( Q_k(\theta)=\esp{\log \pmacro(\by,\bpsi;\theta)| \by;\theta_{k-1} } .\)


  • $\textbf{M-step:}$ update the estimation of $\theta$:

\( \theta_{k} = \argmax{\theta} \, Q_k(\theta) . \)


In can be proved that each EM iteration increases the likelihood of observations and that the EM sequence $(\theta_k)$ converges to a stationary point of the observed likelihood under mild regularity conditions.

Unfortunately, in the framework of nonlinear mixed-effects models, there is no explicit expression for the E-step since the relationship between observations $\by$ and individual parameters $\bpsi$ is nonlinear. However, even though this expectation cannot be computed in a closed-form, it can be approximated by simulation. For instance,


  • The Monte Carlo EM (MCEM) algorithm replaces the E-step by a Monte Carlo approximation based on a large number of independent simulations of the non-observed individual parameters $\bpsi$.
  • The SAEM algorithm replaces the E-step by a stochastic approximation based on a single simulation of $\bpsi$.



The SAEM algorithm

At iteration $k$ of SAEM:


  • $\textbf{Simulation step}$: for $i=1,2,\ldots, N$, draw $\psi_i^{(k)}$ from the conditional distribution $\pmacro(\psi_i |y_i ;\theta_{k-1})$.


  • $\textbf{Stochastic approximation}$: update $Q_k(\theta)$ according to

\( Q_k(\theta) = Q_{k-1}(\theta) + \gamma_k ( \log \pmacro(\by,\bpsi^{(k)};\theta) - Q_{k-1}(\theta) ), \)

where $(\gamma_k)$ is a decreasing sequence of positive numbers such that $\gamma_1=1$, $ \sum_{k=1}^{\infty} \gamma_k = \infty$ and $\sum_{k=1}^{\infty} \gamma_k^2 < \infty$.


  • $\textbf{Maximization step}$: update $\theta_{k-1}$ according to

\( \theta_{k} = \argmax{\theta} \, Q_k(\theta) .\)


Remarks

  • Setting $\gamma_k=1$ for all $k$ means that there is no memory in the stochastic approximation:

\( Q_k(\theta) = \log \pmacro(\by,\bpsi^{(k)};\theta) . \)

This algorithm, known as Stochastic EM (SEM) thus consists of successively simulating $\bpsi^{(k)}$ with the conditional distribution $\pmacro(\bpsi^{(k)} | \by;\theta_{k-1})$, then computing $\theta_k$ by maximizing the joint distribution $\pmacro(\by,\bpsi^{(k)};\theta)$.


  • When the number $N$ of subjects is small, convergence of SAEM can be improved by running $L$ Markov chains for each individual instead of one. The simulation step at iteration $k$ then requires us to draw $L$ sequences $ { \phi_i^{(k,1)} } ,\ldots , { \phi_i^{(k,L)} } $ for each individual $i$ and to combine stochastic approximation and Monte Carlo in the approximation step:

\( Q_k(\theta) = Q_{k-1}(\theta) + \gamma_k \left( \frac{1}{L}\sum_{\ell=1}^{L} \log \pmacro(\by,\bpsi^{(k,\ell)};\theta) - Q_{k-1}(\theta) \right) . \)

By default, $\monolix$ selects $L$ so that $N\times L \geq 50$.


Implementation of SAEM is simplified when the complete model $\pmacro(\by,\bpsi;\theta)$ belongs to a regular (curved) exponential family:

\( \pmacro(\by,\bpsi ;\theta) = \exp\left\{ - \zeta(\theta) + \langle \tilde{S}(\by,\bpsi) , \varphi(\theta) \rangle \right\} , \)

where $\tilde{S}(\by,\bpsi)$ is a sufficient statistic of the complete model (i.e., whose value contains all the information needed to compute any estimate of $\theta$) which takes its values in an open subset ${\cal S}$ of $\Rset^m$. Then, there exists a function $\tilde{\theta}$ such that for any $s\in {\cal S}$,

\( \tilde{\theta}(s) = \argmax{\theta} \left\{ - \zeta(\theta) + \langle s , \varphi(\theta) \rangle \right\} . \)
(1)

The approximation step of SAEM simplifies to a general Robbins-Monro-type scheme for approximating this conditional expectation:


  • $\textbf{Stochastic approximation}$: update $s_k$ according to

\( s_k = s_{k-1} + \gamma_k ( \tilde{S}(\by,\bpsi^{(k)}) - s_{k-1} ) . \)


Note that the E-step of EM simplifies to computing $s_k=\esp{\tilde{S}(\by,\bpsi) | \by ; \theta_{k-1}}$.

Then, both EM and SAEM algorithms use (1) for the M-step: $\theta_k = \tilde{\theta}(s_k)$.

Precise results for convergence of SAEM were obtained in the Estimation of the F.I.M. using a linearization of the model chapter in the case where $\pmacro(\by,\bpsi;\theta)$ belongs to a regular curved exponential family. This first version of SAEM and these first results assume that the individual parameters are simulated exactly under the conditional distribution at each iteration. Unfortunately, for most nonlinear models or non-Gaussian models, the unobserved data cannot be simulated exactly under this conditional distribution. A well-known alternative consists in using the Metropolis-Hastings algorithm: introduce a transition probability which has as unique invariant distribution the conditional distribution we want to simulate.

In other words, the procedure consists of replacing the Simulation step of SAEM at iteration $k$ by $m$ iterations of the Metropolis-Hastings (MH) algorithm described in The Metropolis-Hastings algorithm section. It was shown in the Estimation of the F.I.M. using a linearization of the model section that SAEM still converges under general conditions when coupled with a Markov chain Monte Carlo procedure.


Remark

Convergence of the Markov chains $(\psi_i^{(k)})$ is not necessary at each SAEM iteration. It suffices to run a few MH iterations with various transition kernels before resetting $\theta_{k-1}$. In $\monolix$ by default, three transition kernels are used twice each, successively, in each SAEM iteration.



Implementing SAEM

Implementation of SAEM can be difficult to describe when looking at complex statistical models such as mixture models, models with inter-occasion variability, etc. We are therefore going to limit ourselves to looking at some basic models in order to illustrate how SAEM can be implemented.


SAEM for general hierarchical models

Consider first a very general model for any type (continuous, categorical, survival, etc.) of data $(y_i)$:

\(\begin{eqnarray} y_i | \psi_i &\sim& \pcyipsii(y_i | \psi_i) \\ h(\psi_i) &\sim& {\cal N}( \mu , \Omega), \end{eqnarray}\)

where $h(\psi_i)=(h_1(\psi_{i,1}), h_2(\psi_{i,2}), \ldots , h_d(\psi_{i,d}) )^\transpose$ is a $d$-vector of (transformed) individual parameters, $\mu$ a $d$-vector of fixed effects and $\Omega$ a $d\times d$ variance-covariance matrix.

We assume here that $\Omega$ is positive-definite. Then, a sufficient statistic for the complete model $\pmacro(\by,\bpsi;\theta)$ is $\tilde{S}(\bpsi) = (\tilde{S}_1(\bpsi),\tilde{S}_2(\bpsi))$, where

\(\begin{eqnarray} \tilde{S}_1(\bpsi) &= & \sum_{i=1}^N h(\psi_i) \\ \tilde{S}_2(\bpsi) &= & \sum_{i=1}^N h(\psi_i) h(\psi_i)^\transpose . \end{eqnarray}\)

At iteration $k$ of SAEM, we have:


  • $\textbf{Simulation step}$: for $i=1,2,\ldots, N$, draw $\psi_i^{(k)}$ from $m$ iterations of the MH algorithm described in The Metropolis-Hastings algorithm with $\pmacro(\psi_i |y_i ;\mu_{k-1},\Omega_{k-1})$ as limiting distribution.
  • $\textbf{Stochastic approximation}$: update $s_k=(s_{k,1},s_{k,2})$ according to

\(\begin{eqnarray} s_{k,1} &=& s_{k-1,1} + \gamma_k \left( \sum_{i=1}^N h(\psi_i^{(k)}) - s_{k-1,1} \right) \\ s_{k,2} &=& s_{k-1,2} + \gamma_k \left( \sum_{i=1}^N h(\psi_i^{(k)})h(\psi_i^{(k)})^\transpose - s_{k-1,2} \right) . \end{eqnarray}\)


  • $\textbf{Maximization step}$: update $(\mu_{k-1},\Omega_{k-1})$ according to

\(\begin{eqnarray} \mu_{k} &=& \frac{1}{N} s_{k,1} \\ \Omega_k &=& \frac{1}{N}\left( s_{k,2} - s_{k,1}s_{k,1}^\transpose \right) . \end{eqnarray}\)


What is remarkable is that it suffices to be able to calculate $\pcyipsii(y_i | \psi_i)$ for all $\psi_i$ and $y_i$ in order to be able to run SAEM. In effect, this allows the simulation step to be run using MH since the acceptance probabilities can be calculated.



SAEM for continuous data models

Consider now a continuous data model in which the residual error variance is now constant:


\(\begin{eqnarray} y_{ij} &=& f(t_{ij},\phi_i) + a \teps_{ij} \\ h(\psi_i) &\sim& {\cal N}( \mu , \Omega) . \end{eqnarray}\)


Here, the individual parameters are $\psi_i=(\phi_i,a)$. The variance-covariance matrix for $\psi_i$ is not positive-definite in this case because $a$ has no variability. If we suppose that the variance matrix $\Omega$ is positive-definite, then noting $\theta=(\mu,\Omega,a)$, a natural decomposition of the model is:

\(\pmacro(\by,\bpsi;\theta) = \pmacro(\by | \bpsi;a)\pmacro(\bpsi;\mu,\Omega) . \)

The previous statistic $\tilde{S}(\bpsi) = (\tilde{S}_1(\bpsi),\tilde{S}_2(\bpsi))$ is not sufficient for estimating $a$. Indeed, we need an additional component which is a function both of $\by$ and $\bpsi$:

\( \tilde{S}_3(\by, \bpsi) =\sum_{i=1}^N \sum_{j=1}^{n_i}(y_{ij} - f(t_{ij},\psi_i))^2. \)

Then,

\( \begin{eqnarray} s_{k,3} &=& s_{k-1,3} + \gamma_k ( \tilde{S}_3(\by, \bpsi) - s_{k-1,3} ) \\ a_k^2 &=& \displaystyle{ \frac{1}{\sum_{i=1}^N n_i} s_{k,3} }\ . \end{eqnarray}\)

The choice of step-size $(\gamma_k)$ is extremely important for ensuring convergence of SAEM. The sequence $(\gamma_k)$ used in $\monolix$ decreases like $k^{-\alpha}$. We recommend using $\alpha=0$ (that is, $\gamma_k=1$) during the first $K_1$ iterations, in order to converge quickly to a neighborhood of a maximum of the likelihood, and $\alpha=1$ during the next $K_2$ iterations. Indeed, the initial guess $\theta_0$ may be far from the maximum likelihood value we are looking for, and the first iterations with $\gamma_k=1$ allow SAEM to converge quickly to a neighborhood of this value. Following this, smaller step-sizes ensure the almost sure convergence of the algorithm to the maximum likelihood estimator.


Man02.jpg
Example


Consider a simple model for continuous data:

\(\begin{eqnarray} y_{ij} &\sim& {\cal N}(A_i\,e^{-k_i \, t_{ij} } , a^2) \\ \log(A_i)&\sim&{\cal N}(\log(A_{\rm pop}) , \omega_A^2) \\ \log(k_i)&\sim&{\cal N}(\log(k_{\rm pop}) , \omega_k^2) , \end{eqnarray}\)

where $A_{\rm pop}=6$, $k_{\rm pop}=0.25$, $\omega_A=0.3$, $\omega_k=0.3$ and $a=0.2$. Let us look at the effect of different settings for $(\gamma_k)$ (and $L$) for estimating the population parameters of the model with SAEM.


1. For all $k$, $\gamma_k = 1$: the sequence $(\theta_{k})$ converges very quickly to a neighborhood of the "solution". The sequence $(\theta_{k})$ is a homogeneous Markov Chain that converges in distribution but does not converge almost surely.

Saem1.png


2. For all $k$, $\gamma_k = 1/k$: the sequence $(\theta_{k})$ converges almost surely to the maximum likelihood estimate of $\theta$, but very slowly.

Saem2.png


3. $\gamma_k = 1$, $k=1$, ...,$40$, $\gamma_k = 1/(k-40)$, $k \geq 41$: the sequence $(\theta_{k})$ converges almost surely to the maximum likelihood estimate of $\theta$, and quickly.

Saem3.png


4. $L=10$, $\gamma_k = 1$, $k \geq 1$: the sequence $(\theta_{k})$ is an homogeneous Markov chain that converges in distribution, as in Example 1, but the variance is reduced by a factor $\sqrt{10}$; in this case, SAEM behaves like EM.

Saem4.png



A simple example to understand why SAEM converges in practice

Let us look at a very simple Gaussian model, with only one observation per individual:

\(\begin{eqnarray} \psi_i &\sim& {\cal N}(\theta,\omega^2) , \ \ \ 1 \leq i \leq N \\ y_i &\sim& {\cal N}(\psi_i,\sigma^2). \end{eqnarray}\)

We will furthermore assume that both $\omega^2$ and $\sigma^2$ are known.

Here, the maximum likelihood estimator $ \hat{\theta}$ of $\theta$ is easy to compute since $y_i \sim_{i.i.d.} {\cal N}(\theta,\omega^2+\sigma^2)$. We find that

\( \hat{\theta} = \displaystyle{\frac{1}{N} }\sum_{i=1}^{N} y_i . \)

We now propose to try and compute $\hat{\theta}$ using SAEM instead. The simulation step is straightforward since the conditional distribution of $\psi_i$ is a normal distribution:

\( \psi_i | y_i \sim {\cal N}(a \theta + (1-a)y_i , \gamma^2) , \)

where

\(\begin{eqnarray} a &= & \displaystyle{ \frac{1}{\omega^2} } \left(\displaystyle{ \frac{1}{\sigma^2} }+ \displaystyle{\frac{1}{\omega^2} }\right)^{-1} \\ \gamma^2 &= &\left(\displaystyle{ \frac{1}{\sigma^2} }+ \displaystyle{\frac{1}{\omega^2} }\right)^{-1}. \end{eqnarray}\)

The maximization step is also straightforward. Indeed, a sufficient statistic for estimating $\theta$ is

\( {\cal S}(\bpsi) = \sum_{i=1}^{N} \psi_i. \)

Then,

\(\begin{eqnarray} \tilde{\theta}({\cal S(\bpsi)} ) &=& \argmax{\theta} \pmacro(y_1,\ldots,y_N,\psi_1,\ldots,\psi_N;\theta) \\ &=& \argmax{\theta} \pmacro(\psi_1,\ldots,\psi_N;\theta) \\ &=& \frac{ {\cal S}(\bpsi)}{N}. \end{eqnarray}\)

Let us first look at the behavior of SAEM when $\gamma_k=1$. At iteration $k$,


  • Simulation step: $\psi_i^{(k)} \sim {\cal N}( a \theta_{k-1} + (1-a)y_i , \gamma^2). $
  • Maximization step: $\theta_k = \displaystyle{ \frac{ {\cal S}(\bpsi^{(k)})}{N} } = \displaystyle{ \frac{1}{N} }\sum_{i=1}^{N} \psi_i^{(k)}$.


It can be shown that:

\( \theta_k - \hat{\theta} = a(\theta_{k-1} - \hat{\theta}) + e_k , \)

where $e_k \sim {\cal N}(0, \gamma^2 /N)$. Then, the sequence $(\theta_k)$ is an autoregressive process of order 1 (AR(1)) which converges in distribution to a normal distribution when $k\to \infty$:

\(\theta_k \limite{}{\cal D} {\cal N}\left(\hat{\theta} , \displaystyle{ \frac{\gamma^2}{N(1-a^2)} }\right) . \)


{{{2}}}
10 sequences $(\theta_k)$ obtained with different initial values and $\gamma_k=1$ for $1\leq k \leq 50$


Now, let us see what happens instead when $\gamma_k$ decreases like $1/k$. At iteration $k$,


  • Simulation step: $\psi_i^{(k)} \sim {\cal N}( a \theta_{k-1} + (1-a)y_i , \gamma^2) $
  • Maximization step:

\(\theta_k = \theta_{k-1} + \displaystyle{ \frac{1}{k} }\left( \displaystyle{ \frac{1}{N} }\sum_{i=1}^{N} \psi_i^{(k)} -\theta_{k-1} \right). \)


Here, we can show that:

\( \theta_k - \hat{\theta} = \displaystyle{ \frac{k-a}{k} }(\theta_{k-1} - \hat{\theta}) + \displaystyle{\frac{e_k}{k} }, \)

where $e_k \sim {\cal N}(0, \gamma^2 /N)$. Then, the sequence $(\theta_k)$ converges almost surely to $\hat{\theta}$.


{{{2}}}
10 sequences $(\theta_k)$ obtained with different initial values and $\gamma_k=1/k$ for $1\leq k \leq 50$


Thus, we see that by combining the two strategies, the sequence $(\theta_k)$ is a Markov chain that converges to a random walk around $\hat{\theta}$ during the first $K_1$ iterations, then converges almost surely to $\hat{\theta}$ during the next $K_2$ iterations.


{{{2}}}
10 sequences $(\theta_k)$ obtained with different initial values, $\gamma_k=1$ for $1\leq k \leq 20$ and $\gamma_k=1/(k-20)$ for $21\leq k \leq 50$


{{{2}}}
The SAEM algorithm in practice.


A simulated annealing version of SAEM

Convergence of SAEM can strongly depend on the initial guess when the likelihood ${\like}$ has several local maxima. A simulated annealing version of SAEM can improve convergence of the algorithm toward the global maximum of ${\like}$.

To detail this, we can first rewrite the joint pdf of $(\by,\bpsi)$ as follows:

\(\begin{eqnarray} \pmacro(\by,\bpsi;\theta) = C(\theta)\, \exp \left\{-U(\by,\bpsi;\theta)\right\} , \end{eqnarray}\)

where $C(\theta)$ is a normalizing constant that only depends on $\theta$. Then, for any "temperature" $T\geq0$, we consider the complete model

\(\pmacro_T(\by,\bpsi;\theta) = C_T(\theta)\, \exp \left\{-\displaystyle{\frac{1}{T} }U(\by,\bpsi;\theta) \right\} , \)

where $C_T(\theta)$ is still a normalizing constant.

We then introduce a decreasing temperature sequence $(T_k, 1\leq k \leq K)$ and use the SAEM algorithm on the complete model $\pmacro_{T_k}(\by,\bpsi;\theta)$ at iteration $k$ (the usual version of SAEM uses $T_k=1$ at each iteration). The sequence $(T_k)$ is chosen to have large positive values during the first iterations, then decrease with an exponential rate to 1: $ T_k = \max(1, \tau \ T_{k-1}) $.

Consider for example the following model for continuous data:

\(\begin{eqnarray} y_{ij} &\sim& {\cal N}(f(t_{ij};\psi_i) , a^2) \\ h(\psi_i) &\sim& {\cal N}(\mu , \Omega) . \end{eqnarray}\)

Here, $\theta = (\mu,\Omega,a^2)$ and

\( \pmacro(\by,\bpsi;\theta) = C(\theta)\, \exp \left\{- \displaystyle{ \frac{1}{2 a^2} }\sum_{i=1}^N \sum_{j=1}^{n_i} (y_{ij} - f(t_{ij};\psi_i))^2 - \displaystyle{ \frac{1}{2} } \sum_{i=1}^N (h(\psi_i)-\mu)^\transpose \Omega (h(\psi_i)-\mu) \right\}, \)

where $C(\theta)$ is a normalizing constant that only depends on $a$ and $\Omega$.


We see that $\pmacro_T(\by,\bpsi;\theta)$ will also be a normal distribution whose residual error variance $a^2$ is replaced by $T a^2$ and variance matrix $\Omega$ for the random effects by $T\Omega$. In other words, a model with a "large temperature" is a model with large variances.

The algorithm therefore consists in choosing large initial variances $\Omega_0$ and $a^2_0$ (that include the initial temperature $T_0$ implicitly) and setting $ a^2_k = \max(\tau \ a^2_{k-1} , \hat{a}(\by,\bpsi^{(k)}) $ and $ \Omega_k = \max(\tau \ \Omega_{k-1} , \hat{\Omega}(\bpsi^{(k)}) $ during the first iterations. Here, $0\leq\tau\leq 1$.

These large values of the variance make the conditional distributions $\pmacro_T(\psi_i | y_i;\theta)$ less concentrated around their modes, and thus allow the sequence $(\theta_k)$ to "escape" from local maxima of the likelihood during the first iterations of SAEM and converge to a neighborhood of the global maximum of ${\like}$. After these initial iterations, the usual SAEM algorithm is used to estimate these variances at each iteration.


Remark

We can use two different coefficients $\tau_1$ and $\tau_2$ for $\Omega$ and $a^2$ in $\monolix$. It is possible, for example, to choose $\tau_1<1$ and $\tau_2>1$, with large initial inter-subject variances $\Omega_0$ and small initial residual variance $a^2_0$. In this case, SAEM tries to obtain the best possible fit during the first iterations, allowing for a large inter-subject variability. During the next iterations, this variability is reduced and the residual variance increases until reaching the best possible trade-off between the two criteria.


Man02.jpg
A PK example


Consider a simple one-compartment model for oral administration:
\( f(t;ka,V,k) = \displaystyle{ \frac{D\, ka}{V(ka-ke)} }\left( e^{-ke \, t} - e^{-ka \, t} \right) . \)
(2)

We then simulate PK data from 80 patients using the following population PK parameters:

\( ka_{\rm pop} = 1, \quad V_{\rm pop}=8, \quad ke_{\rm pop}=0.25 .\)

We can see that the following parametrization gives the same prediction as the one given in (2):

\( \tilde{ka} = ke, \quad \tilde{V}=V \times ke/ka, \quad \tilde{ke}=ka . \)

We can then expect a (global) maximum around $(ka,V,ke) = (1, \ 8, \ 0.25)$ and a (local) maximum of the likelihood around $(ka,V,ke) = (0.25, \ 2, \ 1).$

The figure below displays the convergence of SAEM without simulated annealing to a local maximum of the likelihood (deviance = $-2\,\log {\like} =816$). The initial values of the population parameters we chose were $(ka_0,V_0,k_0) = (1,1,1)$.

{{{2}}}
Convergence of SAEM to a local maxima of the likelihood

Using the same initial guess, the simulated annealing version of SAEM converges to the global maximum of the likelihood (deviance = 734).

{{{2}}}
Convergence of SAEM to the global maxima of the likelihood



Bibliography

Allassonnière, S., Kuhn, E., Trouvé, A. - Construction of Bayesian deformable models via a stochastic approximation algorithm: a convergence study

Bernoulli 16(3):641--678,2010
Bibtex
Author : Allassonnière, S., Kuhn, E., Trouvé, A.
Title : Construction of Bayesian deformable models via a stochastic approximation algorithm: a convergence study
In : Bernoulli -
Address :
Date : 2010

Delattre, M., Lavielle, M. - Maximum likelihood estimation in discrete mixed hidden Markov models using the SAEM algorithm

Computational Statistics & Data Analysis 56:2073-2085,2012
Bibtex
Author : Delattre, M., Lavielle, M.
Title : Maximum likelihood estimation in discrete mixed hidden Markov models using the SAEM algorithm
In : Computational Statistics & Data Analysis -
Address :
Date : 2012

Delattre, M., Lavielle, M. - Coupling the SAEM algorithm and the extended Kalman filter for maximum likelihood estimation in mixed-effects diffusion models

Statistics and its interfaces ,2013
Bibtex
Author : Delattre, M., Lavielle, M.
Title : Coupling the SAEM algorithm and the extended Kalman filter for maximum likelihood estimation in mixed-effects diffusion models
In : Statistics and its interfaces -
Address :
Date : 2013

Delyon, B., Lavielle, M., Moulines, E. - Convergence of a stochastic approximation version of the EM algorithm

Annals of Statistics pp. 94-128,1999
Bibtex
Author : Delyon, B., Lavielle, M., Moulines, E.
Title : Convergence of a stochastic approximation version of the EM algorithm
In : Annals of Statistics -
Address :
Date : 1999

Dempster, A.P., Laird, N.M., Rubin, D.B. - Maximum likelihood from incomplete data via the EM algorithm

Journal of the Royal Statistical Society. Series B (Methodological) pp. 1-38,1977
Bibtex
Author : Dempster, A.P., Laird, N.M., Rubin, D.B.
Title : Maximum likelihood from incomplete data via the EM algorithm
In : Journal of the Royal Statistical Society. Series B (Methodological) -
Address :
Date : 1977

Kuhn, E., Lavielle, M. - Coupling a stochastic approximation version of EM with an MCMC procedure

ESAIM: Probability and Statistics 8:115-131,2004
Bibtex
Author : Kuhn, E., Lavielle, M.
Title : Coupling a stochastic approximation version of EM with an MCMC procedure
In : ESAIM: Probability and Statistics -
Address :
Date : 2004

Lavielle, M., Mbogning, C. - An improved SAEM algorithm for maximum likelihood estimation in mixtures of non linear mixed effects models

Statistics and Computing ,2013
Bibtex
Author : Lavielle, M., Mbogning, C.
Title : An improved SAEM algorithm for maximum likelihood estimation in mixtures of non linear mixed effects models
In : Statistics and Computing -
Address :
Date : 2013

McLachlan, G.J., Krishnan, T. - The EM algorithm and extensions

Vol. 382, Wiley-Interscience,2007
Bibtex
Author : McLachlan, G.J., Krishnan, T.
Title : The EM algorithm and extensions
In : -
Address :
Date : 2007

Samson, A., Lavielle, M., Mentré, F. - Extension of the SAEM algorithm to left-censored data in nonlinear mixed-effects model: Application to HIV dynamics model

Computational statistics & data analysis 51(3):1562-1574,2006
Bibtex
Author : Samson, A., Lavielle, M., Mentré, F.
Title : Extension of the SAEM algorithm to left-censored data in nonlinear mixed-effects model: Application to HIV dynamics model
In : Computational statistics & data analysis -
Address :
Date : 2006

Wei, G., Tanner, M. - A Monte Carlo implementation of the EM algorithm and the poor man's data augmentation algorithms

Journal of the American Statistical Association 85(411):699-704,1990
Bibtex
Author : Wei, G., Tanner, M.
Title : A Monte Carlo implementation of the EM algorithm and the poor man's data augmentation algorithms
In : Journal of the American Statistical Association -
Address :
Date : 1990

Wu, C.F. - On the convergence properties of the EM algorithm

The Annals of Statistics 11(1):95-103,1983
Bibtex
Author : Wu, C.F.
Title : On the convergence properties of the EM algorithm
In : The Annals of Statistics -
Address :
Date : 1983


Back.png
Forward.png