Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to implement a model for user-item rating using Rjags. This general model is from a paper called "Regression Based Linear Latent Factor Models". The rating is decided by user-item similarity + user bias + item bias + user-item personalized preference.

Simply speaking,

  • given: user_i, item_j, user-i and item-j share features, user-i specific features, item-j specific features
  • objective: build a Bayesian generative model to model the score user i will rate item j

The core idea:

  • rating(i,j)=similarity(i,j)+userbias(i)+itembias(j)+user-item-latent-interaction(i,j)
  • user-item similarity=f1(user-item share features)
  • user bias=f2(user-features)
  • item bias=f3(item-features)
  • user-item personalized preference = f4(user-item latent interaction)

Example: suppose given

  • rating(i,j)=2
  • i-j share features={sf1,sf2,sf3}
  • i specific features={userf1,userf2, userf3}
  • j specific features={itemf1, itemf2}
  • latent factor num = 2

Then we build the generate procedure:

  • rating: rating(i,j)= Norm(mean.R, var.R)
  • mean.R = c + a + b + e

  • user-item similarity:c=b1*sf1+b2*sf2+b3*sf3

  • user bias: a ~ Norm(mean.a, var.a)
  • mean.a = w1*userf1+w2*userf2+w3*userf3

  • item bias: b ~ Norm(mean.b, var.b)
  • mean.b = z1*itemf1+z2*itemf2

  • user-item latent interaction: e = u' * v
  • u ~ MultivariateNorm(mean.u, var.u)
  • mean.u = G*vector(userf1,userf2, userf3)
  • v ~ MultivariateNorm(mean.v, var.v)
  • mean.v = D*vector(itemf1,itemf2)
  • var.u and var.v are unknown covariance-variance matrix

Notice, G is a 2*3 matrix that makes G*vector(userf1,userf2, userf3) become a 2*1 vector, D is a 2*2 matrix that makes D*vector(itemf1,itemf2) become a 2*1 vector, so that u can time v.


  • var.rating=var.a+var.b+var.u*var.v/(var.u+var.v)

The BUGS file

    var R[NRATING,3], Y[NRATING], mu.Y[NRATING], c[NRATING], a[NUSER], b[NITEM], e[NRATING], FOBS[NRATING,NFOBS], COEFOBS[NFOBS], mu.a[NUSER], FUSER[NUSER,NFUSER], COEFUSER[NFUSER], mu.b[NITEM], FITEM[NITEM,NFITEM],COEFITEM[NFITEM], u[NUSER,NFACTOR], v[NITEM,NFACTOR], mu.u[NUSER, NFACTOR], mu.v[NITEM, NFACTOR], G[NFACTOR,NFUSER], D[NFACTOR, NFUSER], tau.Y, tau.a, tau.b, tau.u[NFACTOR, NFACTOR], tau.v[NFACTOR, NFACTOR], sigma.Y, sigma.a, sigma.b,  I[NFACTOR, NFACTOR], var.a, var.b

    model {
    #likelihood
    for (r in 1:NRATING) {
        R[r,3] ~ dinterval(Y[r],yt)
        Y[r] ~ dnorm(mu.Y[r],tau.Y)
        i<-R[r,1]
        j<-R[r,2]
        mu.Y[r] <- c[r]+a[i]+b[j]+e[r]
    }

   #prior
   for (r in 1:NRATING) {
        c[r]<-FOBS[r,] %*% COEFOBS[]   
   }
   for (n in 1:NUSER) {
        a[n] ~ dnorm(mu.a[n],tau.a)
        mu.a[n]<-FUSER[n,] %*% COEFUSER[] 
   }
   for (m in 1:NITEM) {
        b[m] ~ dnorm(mu.b[m],tau.b)
        mu.b[m]<-FITEM[m,] %*% COEFITEM[] 
   }
   for (r in 1:NRATING) {
        i<-R[r,1]
        j<-R[r,2]
        e[r]<-u[i,] %*% v[j,]
        u[i,] ~ dmnorm(mu.u[i,],tau.u) #error happen here: Missing values in subset expression of u
        v[j,] ~ dmnorm(mu.v[j,],tau.v)
        mu.u[i,]<-G[,] %*% FUSER[i,]
        mu.v[j,]<-D[,] %*% FITEM[i,]
   }
   #precison prior
   tau.Y <- pow(sigma.Y, -2)
   tau.a <- pow(sigma.a, -2)
   tau.b <- pow(sigma.b, -2)
   tau.u <- pow(var.u, -2) * I 
   tau.v <- pow(var.v, -2) * I #I is identity matrix

   #variance prior
   sigma.Y<-sigma.a+sigma.b+(var.u*var.v)/(var.u+var.v)
   }

However, there is an error when I run the bugs mode using Rjags.

Error in jags.model(file = file, data = data, inits = inits, n.chains = 4, : RUNTIME ERROR: Compilation error on line 29. Missing values in subset expression of u

share|improve this question
I would expect your help on: 1) simplifying this question 2) making the question reproducible – thelatemail Dec 17 '12 at 3:10
Hi, @thelatemail I update my problem description. – Jack Fu Dec 17 '12 at 4:25

closed as too localized by thelatemail, mnel, Fahim Parkar, Jim Garrison, AlphaMale Dec 17 '12 at 8:12

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.