-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
424fb58
commit a7a83ab
Showing
8 changed files
with
107 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: SQUAREM | ||
Version: 2020.5 | ||
Date: 2020-10-21 | ||
Version: 2021.1 | ||
Date: 2021-01-12 | ||
Title: Squared Extrapolation Methods for Accelerating EM-Like Monotone | ||
Algorithms | ||
Description: Algorithms for accelerating the convergence of slow, | ||
|
@@ -19,5 +19,5 @@ Maintainer: Ravi Varadhan <[email protected]> | |
URL: https://coah.jhu.edu/people/Faculty_personal_Pages/Varadhan.html | ||
Repository: CRAN | ||
NeedsCompilation: no | ||
Packaged: 2020-10-21 20:02:12 UTC; rvaradhan | ||
Date/Publication: 2020-10-21 21:00:02 UTC | ||
Packaged: 2021-01-12 23:59:02 UTC; rvaradhan | ||
Date/Publication: 2021-01-13 06:40:10 UTC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
\documentclass[12pt]{article} | ||
|
||
\usepackage[margin=1in]{geometry} | ||
\usepackage{amsmath, amssymb, amsfonts} | ||
%\usepackage{natbib} | ||
\usepackage{graphicx} | ||
\usepackage{color} %% red, green, and blue (for screen display) and cyan, magenta, and yellow | ||
\definecolor{Navy}{rgb}{0,0,0.8} | ||
\usepackage{hyperref} | ||
\hypersetup{colorlinks=true, urlcolor={Navy}, linkcolor={Navy}, citecolor={Navy}} | ||
|
||
\parskip 7.2pt | ||
|
||
\newcommand{\compresslist}{% | ||
%\setlength{\itemsep}{1pt}% | ||
\setlength{\itemsep}{0pt}% | ||
\setlength{\parskip}{0pt}% | ||
\setlength{\parsep}{0pt}% | ||
} | ||
|
||
\newcommand{\pb}{\mathbb{P}} | ||
\newcommand{\E}{\mathbb{E}} | ||
\newcommand{\V}{\mathbb{V}} | ||
\newcommand{\C}{\mathbb{C}} | ||
\newcommand{\bea}{\begin{align*}} | ||
\newcommand{\eea}{\end{align*}} | ||
\newcommand{\beq}{\begin{equation}} | ||
\newcommand{\eeq}{\end{equation}} | ||
\newcommand{\be}{\begin{enumerate}} | ||
\newcommand{\ee}{\end{enumerate}} | ||
\newcommand{\bi}{\begin{itemize}} | ||
\newcommand{\ei}{\end{itemize}} | ||
\renewcommand{\baselinestretch}{1} | ||
\title{\texttt{SQUAREM}: Accelerating the Convergence of EM, MM and Other Fixed-Point Algorithms} | ||
\author{Ravi Varadhan} | ||
\date{} | ||
\usepackage{Sweave} | ||
\begin{document} | ||
%\VignetteIndexEntry{SQUAREM Tutorial} | ||
%\VignetteDepends{setRNG} | ||
%\VignetteKeywords{EM algorithm, fixed-point iteration, acceleration, extrapolation} | ||
%\VignettePackage{SQUAREM} | ||
\maketitle | ||
\section{Overview of SQUAREM} | ||
''SQUAREM'' is a package intended for accelerating slowly-convergent contraction mappings. It can be used for accelerating the convergence of slow, linearly convergent contraction mappings such as the EM (expectation-maximization) algorithm, MM (majorize and minimize) algorithm, and other nonlinear fixed-point iterations such as the power method for finding the dominant eigenvector. It uses a novel approach callled squared extrapolation method (SQUAREM) that was proposed in Varadhan and Roland (Scandinavian Journal of Statistics, 35: 335-353), and also in Roland, Vardhan, and Frangakis (Numerical Algorithms, 44: 159-172). | ||
The functions in this package are made available with: | ||
\begin{Schunk} | ||
\begin{Sinput} | ||
> library("SQUAREM") |