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
Is your feature request related to a problem?
I would like to sample the posterior distribution given many x_o (amortization). This is also done in SBC. Currently, this requires a for-loop over x. I think it would be nice to have an option to sample batches of x. This should be possible for any kind of sampler we have (including VI, MCMC, Direct,...)
Describe the solution you'd like
To avoid the hassle of having to decide whether the x are supposed to be i.i.d. or multi-d or just a batch over which to amortize, I would suggest to have a separate sampling method for this, e.g. def sample_amortized()
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
I would like to sample the posterior distribution given many
x_o
(amortization). This is also done in SBC. Currently, this requires a for-loop overx
. I think it would be nice to have an option to sample batches ofx
. This should be possible for any kind of sampler we have (including VI, MCMC, Direct,...)Describe the solution you'd like
To avoid the hassle of having to decide whether the
x
are supposed to bei.i.d.
ormulti-d
or just a batch over which to amortize, I would suggest to have a separate sampling method for this, e.g.def sample_amortized()
The text was updated successfully, but these errors were encountered: