Skip to content

Commit

Permalink
beat: import, just import sampled variables
Browse files Browse the repository at this point in the history
  • Loading branch information
hvasbath committed Sep 29, 2021
1 parent 1fa025f commit 4d9036c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion beat/apps/beat.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,10 @@ def setup(parser):
problem = load_model(
options.results, options.import_from_mode,
hypers=False, build=False)
source_params = list(problem.config.problem_config.priors.keys())
priors = set(
list(problem.config.problem_config.priors.keys()))
rvs = set(problem.varnames)
source_params = list(priors.union(rvs))

stage = Stage(
homepath=problem.outfolder,
Expand Down

0 comments on commit 4d9036c

Please sign in to comment.