Skip to content

Commit

Permalink
fix selftests error
Browse files Browse the repository at this point in the history
  • Loading branch information
chyalexcheng committed Dec 9, 2023
1 parent 6edc2a9 commit eaec558
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion tests/integration/test_gmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ def test_gmm():
"param_names": ['a', 'b'],
},
"calibration": {
"inference": {"ess_target": 0.3},
"inference": {
"ess_target": 0.3,
"scale_cov_with_max": True},
"sampling": {
"max_num_components": 1,
"covariance_type": "full",
Expand Down
5 changes: 4 additions & 1 deletion tests/integration/test_smc.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def test_smc():
"param_names": ['a', 'b'],
},
"calibration": {
"inference": {"ess_target": 0.3},
"inference": {
"ess_target": 0.3,
"scale_cov_with_max": True
},
"sampling": {"max_num_components": 1},
},
}
Expand Down
5 changes: 4 additions & 1 deletion tests/integration/test_smc_mse.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ def test_smc_mse():
"callback": run_sim,
},
"calibration": {
"inference": {"ess_target": 0.3},
"inference": {
"ess_target": 0.3,
"scale_cov_with_max": True
},
"sampling": {"max_num_components": 1},
}
}
Expand Down

0 comments on commit eaec558

Please sign in to comment.