increased sample size
This commit is contained in:
parent
7d338d3e2d
commit
88c23da962
1 changed files with 2 additions and 2 deletions
|
|
@ -45,14 +45,14 @@ def baseline_exposure_model():
|
|||
def test_conditional_prob_inf_given_vl_dist(baseline_exposure_model):
|
||||
|
||||
viral_loads = np.array([3., 5., 7., 9.,])
|
||||
mc_model = baseline_exposure_model.build_model(250_000)
|
||||
mc_model: models.ExposureModel = baseline_exposure_model.build_model(2_000_000)
|
||||
|
||||
expected_pi_means = []
|
||||
expected_lower_percentiles = []
|
||||
expected_upper_percentiles = []
|
||||
|
||||
for vl in viral_loads:
|
||||
model_vl: mc.ExposureModel = nested_replace(
|
||||
model_vl: models.ExposureModel = nested_replace(
|
||||
mc_model, {
|
||||
'concentration_model.infected.virus.viral_load_in_sputum' : 10**vl,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue