Skip to content

Commit

Permalink
Update docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ziatdinovmax authored Feb 7, 2024
1 parent a51e695 commit 2ad3fa9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions gpax/models/sparse_gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@ class viSparseGP(viGP):
Optional custom priors over kernel hyperparameters; uses LogNormal(0,1) by default
mean_fn_prior:
Optional priors over mean function parameters
noise_prior:
Optional custom prior for the observation noise variance; uses LogNormal(0,1) by default.
noise_prior_dist:
Optional custom prior distribution over the observational noise variance.
Defaults to LogNormal(0,1).
lengthscale_prior_dist:
Optional custom prior distribution over kernel lengthscale.
Defaults to LogNormal(0, 1).
guide:
Auto-guide option, use 'delta' (default) or 'normal'
"""
Expand Down
8 changes: 6 additions & 2 deletions gpax/models/vigp.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ class viGP(ExactGP):
Optional custom priors over kernel hyperparameters; uses LogNormal(0,1) by default
mean_fn_prior:
Optional priors over mean function parameters
noise_prior:
Optional custom prior for the observation noise variance; uses LogNormal(0,1) by default.
noise_prior_dist:
Optional custom prior distribution over the observational noise variance.
Defaults to LogNormal(0,1).
lengthscale_prior_dist:
Optional custom prior distribution over kernel lengthscale.
Defaults to LogNormal(0, 1).
guide:
Auto-guide option, use 'delta' (default) or 'normal'
Expand Down

0 comments on commit 2ad3fa9

Please sign in to comment.