sample.tree {CRF} | R Documentation |
Generating samples from the distribution
sample.tree(crf, size)
crf |
The CRF |
size |
The sample size |
Exact sampling for tree- and forest-structured graphs with sum-product belief propagation and backward-sampling
This function will return a matrix with size
rows and crf$n.nodes
columns,
in which each row is a sampled configuration.
library(CRF)
data(Small)
s <- sample.tree(Small$crf, 100)