Gibbs sampling was originally designed by Geman and Geman (1984) for drawing updates from the Gibbs distribution, hence the name. However, single-site Gibbs sampling exhibits poor mixing due to the posterior correlation between the pixel labels. Thus it is very slow to converge when the correlation (controlled by the inverse temperature \(\beta\)) is high.
The algorithm of Swendsen and Wang (1987) addresses this problem by forming clusters of neighbouring pixels, then updating all of the labels within a cluster to the same value. When simulating from the prior, such as a Potts model without an external field, this algorithm is very efficient.
The SW
function in the PottsUtils package is implemented in a combination of R
and C
. The swNoData
function in bayesImageS is implemented using RcppArmadillo, which gives it a speed advantage. It is worth noting that the intention of bayesImageS is not to replace PottsUtils. Rather, an efficient Swendsen-Wang algorithm is used as a building block for implementations of ABC (Grelaud et al. 2009), path sampling (Gelman and Meng 1998), and the exchange algorithm (Murray, Ghahramani, and MacKay 2006). These other algorithms will be covered in future posts.
There are two things that we want to keep track of in this simulation study: the speed of the algorithm and the distribution of the summary statistic. We will be using system.time(..)
to measure both CPU and elapsed (wall clock) time taken for the same number of iterations, for a range of inverse temperatures:
beta <- seq(0,2,by=0.1)
tmMx.PU <- tmMx.bIS <- matrix(nrow=length(beta),ncol=2)
rownames(tmMx.PU) <- rownames(tmMx.bIS) <- beta
colnames(tmMx.PU) <- colnames(tmMx.bIS) <- c("user","elapsed")
We will discard the first 100 iterations as burn-in and keep the remaining 500.
The distribution of pixel labels can be summarised by the sufficient statistic of the Potts model:
\[ S(z) = \sum_{i \sim \ell \in \mathscr{N}} \delta(z_i, z_\ell) \]
where \(i \sim \ell \in \mathscr{N}\) are all of the pairs of neighbours in the lattice (ie. the cliques) and \(\delta(u,v)\) is 1 if \(u = v\) and 0 otherwise (the Kronecker delta function). swNoData
returns this automatically, but with SW
we will need to use the function sufficientStat
to calculate the sufficient statistic for the labels.
library(bayesImageS)
mask <- matrix(1,50,50)
neigh <- getNeighbors(mask, c(2,2,0,0))
block <- getBlocks(mask, 2)
edges <- getEdges(mask, c(2,2,0,0))
n <- sum(mask)
k <- 2
bcrit <- log(1 + sqrt(k))
maxSS <- nrow(edges)
for (i in 1:length(beta)) {
if (requireNamespace("PottsUtils", quietly = TRUE)) {
tm <- system.time(result <- PottsUtils::SW(iter,n,k,edges,beta=beta[i]))
tmMx.PU[i,"user"] <- tm["user.self"]
tmMx.PU[i,"elapsed"] <- tm["elapsed"]
res <- sufficientStat(result, neigh, block, k)
samp.PU[i,] <- res$sum[(burn+1):iter]
print(paste("PottsUtils::SW",beta[i],tm["elapsed"],median(samp.PU[i,])))
} else {
print("PottsUtils::SW unavailable on this platform.")
}
# bayesImageS
tm <- system.time(result <- swNoData(beta[i],k,neigh,block,iter))
tmMx.bIS[i,"user"] <- tm["user.self"]
tmMx.bIS[i,"elapsed"] <- tm["elapsed"]
samp.bIS[i,] <- result$sum[(burn+1):iter]
print(paste("bayesImageS::swNoData",beta[i],tm["elapsed"],median(samp.bIS[i,])))
}
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0 0.157 2446"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.1 0.199999999999999 2571"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.2 0.206 2699.5"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.3 0.213999999999999 2834"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.4 0.219000000000001 2971"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.5 0.225999999999999 3137"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.6 0.232000000000003 3309.5"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.7 0.227999999999998 3519"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.8 0.216999999999999 3783"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 0.9 0.237000000000002 4183.5"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1 0.195 4527"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.1 0.196000000000002 4676"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.2 0.192 4762"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.3 0.196000000000002 4813"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.4 0.184000000000001 4845"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.5 0.184000000000001 4863"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.6 0.197999999999997 4876"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.7 0.181999999999999 4883"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.8 0.212 4889"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 1.9 0.199000000000002 4893"
## [1] "PottsUtils::SW unavailable on this platform."
## [1] "bayesImageS::swNoData 2 0.177 4896"
Here is the comparison of elapsed times between the two algorithms (in seconds):
## user elapsed
## Mode:logical Mode:logical
## NA's:21 NA's:21
## user elapsed
## Min. :0.5930 Min. :0.1570
## 1st Qu.:0.6960 1st Qu.:0.1920
## Median :0.7420 Median :0.1990
## Mean :0.7473 Mean :0.2024
## 3rd Qu.:0.8220 3rd Qu.:0.2170
## Max. :0.8700 Max. :0.2370
On average, swNoData
using RcppArmadillo (Eddelbuettel and Sanderson 2014) is seven times faster than SW
.
s_z <- c(samp.PU,samp.bIS)
s_x <- rep(beta,times=iter-burn)
s_a <- rep(1:2,each=length(beta)*(iter-burn))
s.frame <- data.frame(s_z,c(s_x,s_x),s_a)
names(s.frame) <- c("stat","beta","alg")
s.frame$alg <- factor(s_a,labels=c("SW","swNoData"))
if (requireNamespace("lattice", quietly = TRUE)) {
lattice::xyplot(stat ~ beta | alg, data=s.frame)
}
The overlap between the two distributions is almost complete, although it is a bit tricky to verify that statistically. The relationship between \(beta\) and \(S(z)\) is nonlinear and heteroskedastic.
## [1] NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
## [1] NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
## [1] 34.159419 34.260593 34.919729 35.856902 38.198227 41.902192 42.360515
## [8] 47.940617 54.571909 74.725912 44.237831 33.328516 24.102557 20.061483
## [15] 15.361047 12.389091 10.179723 8.006049 6.686276 5.617966 4.259688
s.frame$beta <- factor(c(s_x,s_x))
if (requireNamespace("PottsUtils", quietly = TRUE)) {
s.fit <- aov(stat ~ alg + beta, data=s.frame)
summary(s.fit)
TukeyHSD(s.fit,which="alg")
}
Eddelbuettel, Dirk, and Conrad Sanderson. 2014. “RcppArmadillo: Accelerating R with High-Performance C++ Linear Algebra.” Comput. Stat. Data Anal. 71: 1054–63. https://doi.org/10.1016/j.csda.2013.02.005.
Gelman, Andrew, and Xiao-Li Meng. 1998. “Simulating Normalizing Constants: From Importance Sampling to Bridge Sampling to Path Sampling.” Statist. Sci. 13 (2): 163–85. https://doi.org/10.1214/ss/1028905934.
Geman, Stuart, and Donald Geman. 1984. “Stochastic Relaxation, Gibbs Distributions and the Bayesian Restoration of Images.” IEEE Trans. PAMI 6: 721–41.
Grelaud, Aude, Christian P. Robert, Jean-Michel Marin, François Rodolphe, and Jean-François Taly. 2009. “ABC Likelihood-Free Methods for Model Choice in Gibbs Random Fields.” Bayesian Analysis 4 (2): 317–36. https://doi.org/10.1214/09-BA412.
Murray, Iain, Zoubin Ghahramani, and David J. C. MacKay. 2006. “MCMC for Doubly-Intractable Distributions.” In Proc. \(22^{nd}\) Conf. UAI, 359–66. Arlington, VA: AUAI Press.
Swendsen, Robert H., and Jian-Sheng Wang. 1987. “Nonuniversal Critical Dynamics in Monte Carlo Simulations.” Phys. Rev. Lett. 58 (2): 86–88. https://doi.org/10.1103/PhysRevLett.58.86.