Skip to content
Snippets Groups Projects
Commit 84016656 authored by Colm Talbot's avatar Colm Talbot
Browse files

Merge branch...

Merge branch '609-bilby-mcmc-unable-to-handle-calibration-parameters-when-using-the-ensemble-sampler' into 'master'

Resolve "Bilby-MCMC unable to handle calibration parameters when using the ensemble sampler"

Closes #609

See merge request lscsoft/bilby!1079
parents bb8b244a 6cb6ae4a
No related branches found
No related tags found
1 merge request!1079Resolve "Bilby-MCMC unable to handle calibration parameters when using the ensemble sampler"
Pipeline #385185 failed
......@@ -983,9 +983,12 @@ def get_proposal_cycle(string, priors, L1steps=1, warn=True):
first_fit=1000, nsamples_for_density=10000, fit_multiplier=2
)
all_but_cal = [key for key in priors if "recalib" not in key]
plist = [
AdaptiveGaussianProposal(priors, weight=small_weight),
DifferentialEvolutionProposal(priors, weight=small_weight),
AdaptiveGaussianProposal(priors, weight=small_weight, subset=all_but_cal),
DifferentialEvolutionProposal(
priors, weight=small_weight, subset=all_but_cal
),
]
if GMMProposal.check_dependencies(warn=warn) is False:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment