PointPosterior
Point estimate plus optional isotropic Gaussian noise. SGD models have no posterior variance to draw from; exploration adds a constant std-dev shake on top of the point estimate.
Functions
Closes to predict(x) + sd * ||x|| * N(0,1) since the per-coord noise terms are iid; one Gaussian draw instead of one per coordinate.
Draw a weight vector from the posterior at exploration variance scale. exploration = 0.0 collapses to the point estimate; 1.0 is the calibrated posterior.
evaluate
Closes to predict(x) + sd * ||x|| * N(0,1) since the per-coord noise terms are iid; one Gaussian draw instead of one per coordinate.
sample
Draw a weight vector from the posterior at exploration variance scale. exploration = 0.0 collapses to the point estimate; 1.0 is the calibrated posterior.