Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions bifs/src/bifs_cl_1D.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@

# Set a few things:
# Prior
mybifs.prior = "Gaussian" # Choices are currently: "Gaussian","Uniform"
# "Gaussian" is actually the default but for illustration...
mybifs.prior = "Gaussian" # Only choice currently
# A uniform prior is equivalent of maximum likelihood, which simply
# gives the current data value. But it does it very slowly. So don't do that.

# Lilelihood

# Likelihood
mybifs.likelihood = "Gaussian" # Choices are currently: "Gaussian","Rician"
# "Gaussian" is actually the default but again for illustration...

Expand Down