You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docsrc/users-guide/examples/Variational Inference.ipynb
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -57,14 +57,15 @@
57
57
"metadata": {},
58
58
"source": [
59
59
"The class [`CmdStanVB`](https://mc-stan.org/cmdstanpy/api.html#cmdstanvb) provides the following properties to access information about the parameter names, estimated means, and the sample:\n",
60
-
" + `column_names` - list of column names\n",
61
-
" + `columns` - number of columns\n",
62
-
" + `eta` - step size scaling parameter\n",
63
-
" + `variational_params_dict` - inferred parameter means as a Dict.\n",
64
-
" + `variational_params_np` - inferred parameter means as a numpy.ndarray.\n",
65
-
" + `variational_params_pd` - inferred parameter means as a pandas.DataFrame.\n",
66
-
" + `variational_sample` - the set of approximate posterior output draws ad a numpy.ndarray.\n",
67
-
" + `variational_sample_pd` - the set of approximate posterior output draws ad a pandas.DataFrame."
60
+
"\n",
61
+
" + `column_names` - list of column names\n",
62
+
" + `columns` - number of columns\n",
63
+
" + `eta` - step size scaling parameter\n",
64
+
" + `variational_params_dict` - inferred parameter means as a Dict.\n",
65
+
" + `variational_params_np` - inferred parameter means as a numpy.ndarray.\n",
66
+
" + `variational_params_pd` - inferred parameter means as a pandas.DataFrame.\n",
67
+
" + `variational_sample` - the set of approximate posterior output draws ad a numpy.ndarray.\n",
68
+
" + `variational_sample_pd` - the set of approximate posterior output draws ad a pandas.DataFrame."
which generates additional quantities of interest from a mode. Its take an existing fit as input and
152
-
uses the parameter estimates in the fit to run the Stan program's `generated quantities block <https://mc-stan.org/docs/reference-manual/program-block-generated-quantities.html>`__.
163
+
uses the parameter estimates in the fit to run the Stan program's
0 commit comments