Skip to content

Commit

Permalink
More MCMC steps and seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-czyz committed Apr 18, 2024
1 parent e7ca208 commit fa085aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/bmi/estimators/external/gmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def __init__(
n_components: int = 10,
alpha: Optional[float] = None,
standardize: bool = True,
mcmc_num_warmup: int = 500,
mcmc_num_samples: int = 500,
mcmc_num_warmup: int = 1_000,
mcmc_num_samples: int = 1_000,
mi_estimate_num_samples: int = 1_000,
n_thinned_samples: Optional[int] = None,
) -> None:
Expand Down
2 changes: 1 addition & 1 deletion workflows/projects/Mixtures/gmm_benchmark.smk
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ TASKS = [
TASKS_DICT = {
task.id: task for task in TASKS
}
SEEDS = [0]
SEEDS = [0, 1, 2]

N_SAMPLES: int = 5_000

Expand Down

0 comments on commit fa085aa

Please sign in to comment.