Skip to content

Commit

Permalink
Update default half-normal prior
Browse files Browse the repository at this point in the history
  • Loading branch information
ziatdinovmax committed Jan 4, 2024
1 parent 834bde6 commit 6be811f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpax/models/uigp.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _sample_x(self, X):
if self.sigma_x_prior_dist is not None:
sigma_x_dist = self.sigma_x_prior_dist
else:
sigma_x_dist = dist.HalfNormal(1)
sigma_x_dist = dist.HalfNormal(.1)
sigma_x = numpyro.sample("sigma_x", sigma_x_dist)
return numpyro.sample("X_prime", dist.Normal(X, sigma_x))

Expand Down

0 comments on commit 6be811f

Please sign in to comment.