Skip to content

Commit f0a9288

Browse files
Fix bug in warmup scheduling bgmCompare
Updated description and news
1 parent 64d0391 commit f0a9288

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Package: bgms
22
Type: Package
33
Title: Bayesian Analysis of Networks of Binary and/or Ordinal Variables
44
Version: 0.1.6.1
5-
Date: 2025-09-26
5+
Date: 2025-10-03
66
Authors@R: c(
77
person("Maarten", "Marsman", , "[email protected]", role = c("aut", "cre"),
88
comment = c(ORCID = "0000-0001-5309-7502")),

NEWS.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# bgms 0.1.6.1
2+
3+
## Other changes
4+
5+
* added extractor function for joint SBM output
6+
* cleaned up documentation, and c++ files
7+
* changed length of warmup phase I in warmup scheduler HMC / NUTS (15% → 7.5%)
8+
9+
## Bug fixes
10+
11+
* Fixed a problem with warmup scheduling for adaptive-metropolis in bgmCompare()
12+
* Fixed stability problems with parallel sampling for bgm()
13+
114
# bgms 0.1.6.0
215

316
## New features

src/bgmCompare_sampler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1652,7 +1652,7 @@ SamplerOutput run_gibbs_sampler_bgmCompare(
16521652
}
16531653

16541654
// --- Warmup scheduling + adaptation controller
1655-
WarmupSchedule warmup_schedule(warmup, difference_selection, true);
1655+
WarmupSchedule warmup_schedule(warmup, difference_selection, (update_method != adaptive_metropolis));
16561656

16571657
HMCAdaptationController hmc_adapt(
16581658
(num_main + num_pair) * num_groups, initial_step_size, target_accept,

0 commit comments

Comments
 (0)