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
compiled function or after inference has been run. These variables are:
1635
1637
1636
1638
- Variables in the outputs list
1637
-
- ``SharedVariable`` instances that are not ``RandomStateSharedVariable`` or ``RandomGeneratorSharedVariable``
1639
+
- ``SharedVariable`` instances that are not ``RandomStateSharedVariable`` or ``RandomGeneratorSharedVariable``, and whose values changed with respect to what they were at inference time
1638
1640
- Variables that are in the `basic_rvs` list but not in the ``vars_in_trace`` list
1639
1641
- Variables that are keys in the ``givens_dict``
1640
1642
- Variables that have volatile inputs
1641
1643
1642
1644
Concretely, this function can be used to compile a function to sample from the
1643
1645
posterior predictive distribution of a model that has variables that are conditioned
1644
-
on ``MutableData`` instances. The variables that depend on the mutable data will be
1645
-
considered volatile, and as such, they wont be included as inputs into the compiled function.
1646
-
This means that if they have values stored in the posterior, these values will be ignored
1647
-
and new values will be computed (in the case of deterministics and potentials) or sampled
1648
-
(in the case of random variables).
1646
+
on ``MutableData`` instances. The variables that depend on the mutable data that have changed
1647
+
will be considered volatile, and as such, they wont be included as inputs into the compiled
1648
+
function. This means that if they have values stored in the posterior, these values will be
1649
+
ignored and new values will be computed (in the case of deterministics and potentials) or
1650
+
sampled (in the case of random variables).
1649
1651
1650
1652
This function also enables a way to impute values for any variable in the computational
1651
1653
graph that produces the desired outputs: the ``givens_dict``. This dictionary can be used
0 commit comments