Skip to content
Snippets Groups Projects
Commit 6cb6ae4a authored by Gregory Ashton's avatar Gregory Ashton Committed by Colm Talbot
Browse files

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

parent a2390302
No related branches found
No related tags found
1 merge request!1079Resolve "Bilby-MCMC unable to handle calibration parameters when using the ensemble sampler"
......@@ -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