@@ -129,7 +129,7 @@ For each CmdStan inference method, there is a corresponding method on the :class
129129An example of each is provided in the `next section <examples.rst >`__.
130130
131131* The :meth: `~CmdStanModel.sample ` method runs Stan's
132- `HMC-NUTS sampler <https://mc-stan.org/docs/reference-manual/hamiltonian-monte-carlo.html >`__.
132+ `HMC-NUTS sampler <https://mc-stan.org/docs/reference-manual/mcmc.html# hamiltonian-monte-carlo >`__.
133133
134134 It returns a :class: `CmdStanMCMC ` object which contains
135135 a sample from the posterior distribution of the model conditioned on the data.
@@ -141,12 +141,12 @@ An example of each is provided in the `next section <examples.rst>`__.
141141 a sample from a Gaussian approximation the posterior distribution.
142142
143143* The :meth: `~CmdStanModel.variational ` method runs Stan's
144- `Automatic Differentiation Variational Inference (ADVI) algorithm <https://mc-stan.org/docs/reference-manual/vi-algorithms-chapter .html >`__.
144+ `Automatic Differentiation Variational Inference (ADVI) algorithm <https://mc-stan.org/docs/reference-manual/variational .html >`__.
145145
146146 It returns a :class: `CmdStanVB ` object which contains an approximation the posterior distribution.
147147
148148* The :meth: `~CmdStanModel.optimize ` runs one of Stan's
149- `optimization algorithms <https://mc-stan.org/docs/reference-manual/optimization-algorithms-chapter .html >`__
149+ `optimization algorithms <https://mc-stan.org/docs/reference-manual/optimization.html >`__
150150 to find a mode of the density specified by the Stan program.
151151
152152 It returns a :class: `CmdStanMLE ` object.
@@ -155,7 +155,7 @@ An example of each is provided in the `next section <examples.rst>`__.
155155 `generate_quantities method <https://mc-stan.org/docs/cmdstan-guide/standalone-generate-quantities.html >`__.
156156 which generates additional quantities of interest from a mode. Its take an existing fit as input and
157157 uses the parameter estimates in the fit to run the Stan program's
158- `generated quantities block <https://mc-stan.org/docs/reference-manual/program-block-generated-quantities.html >`__.
158+ `generated quantities block <https://mc-stan.org/docs/reference-manual/blocks.html# program-block-generated-quantities >`__.
159159
160160 It returns a :class: `CmdStanGQ ` object.
161161
0 commit comments