Skip to content

Commit 8bee950

Browse files
author
Bob Carpenter
committed
updated manual for 2.6, added Bernoulli example directly to cmdstan distro
1 parent dfda127 commit 8bee950

File tree

9 files changed

+127
-62
lines changed

9 files changed

+127
-62
lines changed

examples/bernoulli/bernoulli.data.R

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
N <- 10
2+
y <- c(0,1,0,0,0,0,0,0,0,1)

examples/bernoulli/bernoulli.stan

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
data {
2+
int<lower=0> N;
3+
int<lower=0,upper=1> y[N];
4+
}
5+
parameters {
6+
real<lower=0,upper=1> theta;
7+
}
8+
model {
9+
theta ~ beta(1,1);
10+
for (n in 1:N)
11+
y[n] ~ bernoulli(theta);
12+
}

src/docs/cmdstan-guide/cmdstan-guide.tex

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
\usepackage{../../../stan/src/docs/stan-reference/stan-manuals}
44

5-
\newcommand{\cmdstanversion}{2.5.0}
5+
\newcommand{\cmdstanversion}{2.6.0}
66
\newcommand{\CmdStan}{CmdStan\xspace}
77

88
\begin{document}
@@ -12,8 +12,11 @@
1212
\frontmatter
1313
\include{title}
1414
\tableofcontents
15+
\newcounter{savepage}
16+
\setcounter{savepage}{\arabic{page} + 2}
1517

1618
\mainmatter
19+
\setcounter{page}{\thesavepage}
1720
\part{Introduction}
1821
\include{introduction}
1922
\include{getting-started}

src/docs/cmdstan-guide/getting-started.tex

+28-23
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ \section{Building \CmdStan}
4343
%
4444
\item Use make to build \CmdStan. If multiple CPU cores are
4545
available, the call to make can be parallelized with the
46-
\code{-j2} option, where \code{2} is the number of CPU cores. The
47-
parallel option (\code{-j2}) can be safely omitted.
46+
\code{-j{\slshape N}} option, where \code{{\slshape N}} is the number of CPU cores. The
47+
parallel option (\code{-j{\slshape N}}) can be safely omitted.
48+
For instance, to run on 2 cores, use
4849
%
4950
\begin{quote}
5051
\begin{Verbatim}[fontshape=sl]
@@ -54,7 +55,8 @@ \section{Building \CmdStan}
5455
%
5556
\emph{Warning:} \ The \code{make} program may take 10+ minutes and
5657
consume 2+ GB of memory to build \CmdStan. Compiler warnings,
57-
such as \code{uname:~not found}, may be safely ignored.
58+
such as \code{uname:~not found} or \code{warning: unused
59+
variable}, may be safely ignored.
5860

5961
\end{enumerate}
6062
%
@@ -87,13 +89,14 @@ \section{Compiling and Executing a Stan Program}\label{compiling-model.section}
8789

8890
\subsection{A Simple Bernoulli Model}
8991

90-
The following simple model is distributed with \CmdStan and is located at
92+
The following is a simplet, complete Stan program for a Bernoulli
93+
model of binary data.%
9194
%
92-
\begin{quote}
93-
\href{https://github.com/stan-dev/example-models/blob/master/basic_estimators/bernoulli.stan}{\nolinkurl{stan/example-models/basic_estimators/bernoulli.stan}}
94-
\end{quote}
95-
%
96-
The file contains the following \Stan program.
95+
\footnote{The model is distributed with Stan's example models
96+
repository,
97+
\url{https://github.com/stan-dev/example-models/blob/master/basic_estimators/bernoulli.stan},
98+
and is also available with the CmdStan distribution at the path
99+
\nolinkurl{examples/bernoulli/bernoulli.stan}. }
97100
%
98101
\begin{quote}
99102
\begin{Verbatim}
@@ -118,13 +121,15 @@ \subsection{A Simple Bernoulli Model}
118121

119122
\subsection{Data Set}
120123

121-
A data set of $\mbox{\code{N}}=10$ observations is available in the file
124+
A data set of $\mbox{\code{N}}=10$ observations is coded as follows.
122125
%
123-
\begin{quote}
124-
\href{https://github.com/stan-dev/example-models/blob/master/basic_estimators/bernoulli.data.R}{\nolinkurl{stan/example-models/basic_estimators/bernoulli.data.R}}
125-
\end{quote}
126-
%
127-
The content of the file is as follows.
126+
\footnote{
127+
The data is also available from the \code{example-models} repository
128+
on GitHub,
129+
\url{https://github.com/stan-dev/example-models/blob/master/basic_estimators/bernoulli.data.R}.
130+
It is also included with the CmdStan distribution and can be found at path
131+
\nolinkurl{stan/example-models/basic_estimators/bernoulli.data.R}.
132+
}
128133
%
129134
\begin{quote}
130135
\begin{Verbatim}
@@ -294,11 +299,11 @@ \subsubsection{Sampler Output}
294299
lp__,accept_stat__,stepsize__,treedepth__,n_leapfrog__,n_divergent__,theta
295300
\end{Verbatim}
296301
%
297-
The first column reports the unnormalized log probability of the model. The next
298-
columns provide sampler-dependent information; here, it is columns two
299-
through five. For basic Hamiltonian Monte Carlo (HMC) and its adaptive
300-
variant No-U-Turn sampler (NUTS), the sampler-depedent parameters are
301-
described in the following table.
302+
The first column reports the unnormalized log probability of the
303+
model. The next columns provide sampler-dependent information; here,
304+
it is columns two through five. For basic Hamiltonian Monte Carlo
305+
(HMC) and its adaptive variant, the No-U-Turn sampler (NUTS), the
306+
sampler-depedent parameters are described in the following table.
302307
%
303308
\begin{center}
304309
\begin{tabular}{l|l|l}
@@ -463,7 +468,7 @@ \subsection{Optimization}
463468
\end{Verbatim}
464469
\end{quote}
465470
%
466-
which prints out
471+
Executing this command prints the following.
467472
%
468473
\begin{Verbatim}[fontsize=\footnotesize]
469474
method = optimize
@@ -491,8 +496,8 @@ \subsection{Optimization}
491496
refresh = 100 (Default)
492497
493498
initial log joint probability = -5.18908
494-
Iter log prob ||dx|| ||grad|| alpha alpha0 # evals Notes
495-
4 -5.00402 0.00400907 7.80306e-05 1 1 7
499+
Iter log prob ||dx|| ||grad|| alpha alpha0 # evals Notes
500+
4 -5.00402 0.00400907 7.80306e-05 1 1 7
496501
Optimization terminated normally:
497502
Convergence detected: relative gradient magnitude is below tolerance
498503
\end{Verbatim}

src/docs/cmdstan-guide/installation.tex

+37-25
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ \section{Operating System}
2020
%
2121
\begin{itemize}
2222
\item Linux (Debian, Ubuntu, Red Hat),
23-
\item Mac OS X (Mavericks, Snow Leopard, Lion, Mountain Lion), and
23+
\item Mac OS X (10.10 ``Yosemite,'' 10.9 ``Mavericks,'' 10.8
24+
``Mountain Lion,'' 10.7 ``Lion,'' and 10.6 ``Snow Leopard'')
2425
\item Windows (XP, 7, 8).
2526
\end{itemize}
2627
%
@@ -36,18 +37,31 @@ \section{Required Software and Tools}
3637

3738
\subsection{\CmdStan Source}
3839

39-
In order to compile \Stan program, the \CmdStan source code is required.
40-
The latest version of \CmdStan can be downloaded from the following link.
40+
In order to compile \Stan program, the \CmdStan source code is
41+
required. The \CmdStan source code distribution includes \CmdStan's
42+
source code, \Stan's source code, documentation, build scripts, unit
43+
tests, example models models, documentation and source for the
44+
required libraries Boost and Eigen, and the source for an optional
45+
testing library, Google Test.
46+
47+
\subsubsection{CmdStan: Stable Releases}
48+
49+
The latest release version of \CmdStan can be downloaded
50+
from the CmdStan home page:
4151
%
4252
\begin{quote}
43-
\url{http://mc-stan.org/}
53+
\url{http://mc-stan.org/cmdstan.html}
4454
\end{quote}
4555
%
46-
The \CmdStan source code distribution includes \CmdStan's source code,
47-
\Stan's source code, documentation, build scripts, unit tests, example
48-
models models, documentation and source for the required libraries
49-
Boost and Eigen, and the source for an optional testing library,
50-
Google Test.
56+
57+
\subsubsection{CmdStan: Development Source Control}
58+
59+
The source code repository is hosted by GitHub, and contains the
60+
latest versions of CmdStan (and Stan) underdevelopment. See:
61+
%
62+
\begin{quote}
63+
http://mc-stan.org/source-repos.html
64+
\end{quote}
5165

5266
\subsubsection{Boost C++ Library Source}
5367

@@ -56,7 +70,7 @@ \subsubsection{Boost C++ Library Source}
5670
Library.
5771
%
5872
\begin{itemize}
59-
\item Home: http://www.boost.org/users/license.html
73+
\item Home: \url{http://www.boost.org/users/license.html}
6074
\item License: Boost Software License
6175
\item Tested Version: 1.54.0
6276
\end{itemize}
@@ -194,10 +208,10 @@ \subsection{Verifying Tools}
194208

195209
\subsection{Downloading and Unpacking \CmdStan}
196210

197-
The \CmdStan source code distributions are named
198-
\code{cmdstan-2.5.p.tar.gz}, where \code{p} is the patch
199-
version. Download the latest \CmdStan source tarball from the \CmdStan
200-
downloads page,
211+
The \CmdStan source code distribution is named
212+
\code{cmdstan-\cmdstanversion.tar.gz}; the versions here are major version 2,
213+
minor version 6, and patch level 0. Download the latest \CmdStan
214+
source tarball from the \CmdStan downloads page,
201215
%
202216
\begin{quote}
203217
\url{https://github.com/stan-dev/cmdstan/releases}
@@ -253,7 +267,7 @@ \subsection{Downloading and Unpacking \CmdStan}
253267
%
254268
\begin{quote}
255269
\begin{Verbatim}[fontshape=sl,fontsize=\small]
256-
> tar --no-same-owner -xzf cmdstan-2.5.p.tar.gz
270+
> tar --no-same-owner -xzf cmdstan-\cmdstanversion.tar.gz
257271
\end{Verbatim}
258272
\end{quote}
259273
%
@@ -317,8 +331,7 @@ \subsection{Install Xcode C++ Development Environment}
317331

318332
\subsection{Download and Unpack \CmdStan Source}
319333

320-
Download the most recent version of \code{cmdstan-2.5.p.tar.gz}
321-
(\code{p} the patch level) from
334+
Download the most recent version of \code{cmdstan-\cmdstanversion.tar.gz} from
322335
the \CmdStan downloads list,
323336
%
324337
\begin{quote}
@@ -329,11 +342,11 @@ \subsection{Download and Unpack \CmdStan Source}
329342
(typically, the user's top-level \code{Downloads} folder).
330343

331344
If the Mac OS has not automatically unpacked the \code{.tar.gz}
332-
file into file \code{cmdstan-2.5.p.tar},
345+
file into file \code{cmdstan-\cmdstanversion.tar},
333346
double-click the \code{.tar.gz} file to unpack.
334347

335348
Double click on the \code{.tar} file to unarchive
336-
directory \code{cmdstan-2.5.p}.
349+
directory \code{cmdstan-\cmdstanversion}.
337350

338351
Move the resulting directory to a location where it will not be
339352
deleted, henceforth called \code{<cmdstan-home>}.
@@ -380,8 +393,7 @@ \subsection{Installing C++ Development Tools}
380393
\subsection{Downloading and Unpacking \CmdStan Source}
381394

382395
Download the most recent stable version of \CmdStan,
383-
\code{cmdstan-2.5.p.tar.gz}, where \code{p} the patch level, from the
384-
\CmdStan downloads page,
396+
\code{cmdstan-\cmdstanversion.tar.gz}, from the \CmdStan downloads page,
385397
%
386398
\begin{quote}
387399
\url{https://github.com/stan-dev/cmdstan/releases}
@@ -402,14 +414,14 @@ \subsection{Downloading and Unpacking \CmdStan Source}
402414

403415
Then, unpack the distribution into the subdirectory
404416
\begin{quote}
405-
\nolinkurl{<download-dir>/cmdstan-2.5.p}
417+
\nolinkurl{<download-dir>/cmdstan-\cmdstanversion}
406418
\end{quote}
407419
%
408420
with
409421
%
410422
\begin{quote}
411423
\begin{Verbatim}[fontshape=sl,fontsize=\small]
412-
> tar -xzf cmdstan-2.5.p.tar.gz
424+
> tar -xzf cmdstan-\cmdstanversion.tar.gz
413425
\end{Verbatim}
414426
\end{quote}
415427

@@ -589,7 +601,7 @@ \subsection{Git Version Control System}
589601
\begin{itemize}
590602
\item Home: \url{http://git-scm.com/}
591603
\item License: GPL2
592-
\item Tested Version(s): Mac version 1.7.8.4, Windows version 1.7.9
604+
\item Tested Version(s): Mac versions 1.8.2.3 and 1.7.8.4; Windows version 1.7.9
593605
\end{itemize}
594606

595607

@@ -604,7 +616,7 @@ \subsubsection{Google Test C++ Testing Framework}
604616
\item
605617
License: BSD
606618
\item
607-
Tested Version(s): 1.6.0
619+
Tested Version(s): 1.7.0
608620
\end{itemize}
609621
%
610622
The Google Test framework is distributed with \Stan.

src/docs/cmdstan-guide/introduction.tex

+7-6
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,10 @@ \section{Example Models}
4141

4242
\section{Benefits of \CmdStan}
4343

44-
Although \CmdStan has the least amount functionality among the \Stan
45-
interfaces, the minimal nature of \CmdStan makes it trivial to install
46-
and use the latest development version of the \Stan library. It also
47-
has the least dependencies, which makes it easy to run on limited
48-
environments such as clusters. The output generated can be post-processed
49-
using other interfaces.
44+
Although \CmdStan has the least amount of functionality among the
45+
\Stan interfaces, the minimal nature of \CmdStan makes it trivial to
46+
install and use the latest development version of the \Stan
47+
library. It also has the fewest dependencies, which makes it easier to
48+
run in limited environments such as clusters. The output generated is
49+
in CSV format and can be post-processed using other Stan interfaces or
50+
general tools.

src/docs/cmdstan-guide/running.tex

+34-4
Original file line numberDiff line numberDiff line change
@@ -1565,10 +1565,40 @@ \subsection{Optimization Templates}
15651565
%
15661566
\CmdStan supports several optimizers. These share many of their
15671567
configuration options with the samplers. The default optimizer is the
1568-
Broyden-Fletcher-Goldfarb-Shanno (BFGS) method and a limited-memory
1569-
version of this algorithm, L-BFGS, is also implemented (see
1570-
\citep{NocedalWright:2006} for more information on BFGS and L-BFGS).
1571-
The command skeleton for BFGS is in \reffigure{bfgs-command}.
1568+
the limited memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS) method;
1569+
\cite{NocedalWright:2006} contains an excellent overview of both the
1570+
BFGS and L-BFGS algorithms. The command skeleton for L-BFGS is in
1571+
\reffigure{l-bfgs-command} and the one for BFGS is in
1572+
\reffigure{bfgs-command}.
1573+
%
1574+
\begin{figure}
1575+
\begin{quote}
1576+
\begin{Verbatim}[fontshape=sl,fontsize=\small]
1577+
> ./my_model optimize \
1578+
algorithm=lbfgs \
1579+
[init_alpha=<double>] \
1580+
[tol_obj=<double>] \
1581+
[tol_rel_obj=<double>] \
1582+
[tol_grad=<double>] \
1583+
[tol_rel_grad=<double>] \
1584+
[tol_param=<double>] \
1585+
[history_size=<int>] \
1586+
[iter=<int>] \
1587+
[save_iterations=<boolean>] \
1588+
[data file=<string>] \
1589+
[init=<string>] \
1590+
[random seed=<int>] \
1591+
[output \
1592+
[file=<string>] \
1593+
[diagnostic_file=<string>] \
1594+
[refresh=<int>] ]
1595+
\end{Verbatim}
1596+
\end{quote}
1597+
\caption{\small\it Command skeleton for invoking the L-BFGS optimizer.
1598+
All arguments and their default values are described in detail in
1599+
\refsection{detailed-command-arguments}.}
1600+
\label{l-bfgs-command.figure}
1601+
\end{figure}
15721602
%
15731603
\begin{figure}
15741604
\begin{quote}

src/docs/cmdstan-guide/title.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
\begin{center}
2121
\begin{minipage}[t]{0.75\textwidth}
2222
\small
23-
Stan Development Team. 2014.
23+
Stan Development Team. 2015.
2424
{\it CmdStan: User's Guide}. Version
2525
\cmdstanversion
2626
\vspace*{20pt}
2727
\mbox{ }
2828
\\
29-
Copyright \copyright \ 2011--2014, Stan Development Team.
29+
Copyright \copyright \ 2011--2015, Stan Development Team.
3030
\vspace*{28pt}
3131
\mbox{} \\
3232
This document is distributed under the Creative Commons Attribute 4.0

stan

Submodule stan updated 36 files

0 commit comments

Comments
 (0)