tests/pseudo-lik_surf_test2b.R

library(CRFutil)
library(rgl)

#
grphf <- ~A:B
adj   <- ug(grphf, result="matrix")
f0 <- function(y){ as.numeric(c((y==1),(y==2)))}

n.states <- 2
known.model <- make.crf(adj, n.states)

# True node pots:
PsiA <- c(1,1)
PsiB <- c(1,1)

# True edge pots:
PsiAB <-
  rbind(
    c(5, 2.5),
    c(2.5, 5)
  )

known.model$node.pot[1,]  <- PsiA
known.model$node.pot[2,]  <- PsiB
known.model$edge.pot[[1]] <- PsiAB

# So now sample from the model as if we obtained an experimental sample:
num.samps <- 25
set.seed(1)
samps <- sample.exact(known.model, num.samps)
samps
mrf.sample.plot(samps)

fit <- make.crf(adj, n.states)
fit <- make.features(fit)
fit <- make.par(fit, 2)

fit$node.par[1,1,] <- 1
fit$node.par[2,1,] <- 1
fit$node.par

# Use the more flexible edge parameterization:
fit$edge.par[[1]][1,1,1] <- 2
fit$edge.par[[1]][2,2,1] <- 2
fit$edge.par

# First compute the sufficient stats needed by the likelihood and its’ grad
fit$par.stat <- mrf.stat(fit, samps)
fit$par.stat

# Auxiliary, gradient convenience function. Follows train.mrf in CRF:
gradient <- function(par, crf, ...) { crf$gradient }

# Lets use loopy-belief (lbp) to compute any needed inference quantities (Z and Bels)
# I had to run optim 3-times to reach convergence with LBP:
infr.meth <- infer.exact        # inference method needed for Z and marginals calcs
opt.info  <- stats::optim(    # optimize parameters
  par          = fit$par,       # theta
  fn           = negloglik,     # objective function
  gr           = gradient,      # grad obj func
  crf          = fit,           # passed to fn/gr
  samples      = samps,         # passed to fn/gr
  infer.method = infr.meth,     # passed to fn/gr
  update.crfQ  = TRUE,          # passed to fn/gr
  method       = "L-BFGS-B",
  control      = list(trace = 1, REPORT=1))
opt.info$convergence
opt.info$message
fit$gradient
fit$nll

infer.exact(fit)
fit$node.pot
fit$edge.pot

fit$par
#----------------------------------------------------

fit2 <- make.crf(adj, n.states)
fit2 <- make.features(fit2)
fit2 <- make.par(fit2, 2)
fit2$node.par[1,1,] <- 1
fit2$node.par[2,1,] <- 1
fit2$node.par

fit2$edge.par[[1]][1,1,1] <- 2
fit2$edge.par[[1]][2,2,1] <- 2
fit2$edge.par
n2p <- nodes2params.list(fit2, storeQ = T)

fit$par
theta1 <- seq(from = -1.2, to=0.5, by = 0.05)
theta2 <- seq(from = -0.1, to=0.00, by = 0.01)

epsl <- 0.005
theta1 <- seq(from = theta.grid[min.idx,1] - epsl, to=theta.grid[min.idx,1] + epsl, by = 0.0003)
theta2 <- seq(from = theta.grid[min.idx,2] - epsl, to=theta.grid[min.idx,2] + epsl, by = 0.0003)



length(theta1)
length(theta2)
length(theta1)*length(theta2)
theta.grid <- as.matrix(expand.grid(theta1,theta2))
dim(theta.grid)

# Now lets try looping over the different parameter vectors contained in theta.grid. For each compute the
# corresponding sample pseudolikelihood:
neg.log.psls <- array(NA, nrow(theta.grid))
for(i in 1:nrow(theta.grid)) {

  print(i)
  theta <- theta.grid[i,]
  neg.log.psls[i] <- sum(sapply(1:nrow(samps), function(xx){neglogpseudolik.config(par = theta, config = samps[xx,], crf = fit2, ff = f0)}))

}
neg.log.psls
hist(neg.log.psls)
min(neg.log.psls)

min.idx <- which(neg.log.psls == min(neg.log.psls))
min.idx
c(theta.grid[min.idx,1], theta.grid[min.idx,2], neg.log.psls[min.idx])
fit$par # From full likelihood MLE
plot3d(theta.grid[,1], theta.grid[,2], neg.log.psls)
text3d(theta.grid[min.idx,1], theta.grid[min.idx,2], neg.log.psls[min.idx], texts = "min")
lines3d(c(theta.grid[min.idx,1],theta.grid[min.idx,1]), c(theta.grid[min.idx,2],theta.grid[min.idx,2]), c(neg.log.psls[min.idx], max(neg.log.psls)))


c(theta.grid[min.idx,1], theta.grid[min.idx,2], neg.log.psls[min.idx])

# Initalize a gradient vector:
fit2$n.par
#neg.log.psl.grad <- array(0, fit2$n.par)

# Compute the sample gradient using the current theta in known.model:
for(n in 1:nrow(samps)) {
  neg.log.psl.grad <- neg.log.psl.grad +
    grad.neglogpseudolik.config(
      config                               = samps[n,],
      phi.config                           = NULL,
      node.conditional.energies            = NULL,
      node.complement.conditional.energies = NULL,
      par                                  = c(theta.grid[min.idx,1], theta.grid[min.idx,2]),
      crf                                  = fit2,
      ff                                   = f0)$gradient.log.pseudolikelihood
}
neg.log.psl
neg.log.psl.grad

for(n in 1:nrow(samps)) {
  neg.log.psl.grad <- neg.log.psl.grad +
    grad.neglogpseudolik.config(
      config                               = samps[n,],
      phi.config                           = NULL,
      node.conditional.energies            = NULL,
      node.complement.conditional.energies = NULL,
      par                                  = c(theta.grid[1,1], theta.grid[1,2]),
      crf                                  = fit2,
      ff                                   = f0)$gradient.log.pseudolikelihood
}
c(theta.grid[1,1], theta.grid[1,2])
neg.log.psl.grad

#lines3d(c(theta.grid[1,1],theta.grid[1,1]), c(theta.grid[1,2],theta.grid[1,2]), c(neg.log.psls[min.idx], max(neg.log.psls)))
npetraco/CRFutil documentation built on Nov. 23, 2023, 11:30 a.m.