How to improve processing time of loops in R, manual xgboost prediction

378 Views Asked by At

I have a trained xgboost model in R, and my application server can run R but can't install package:xgboost (not supported by renjin, which is JVM-based interpreter for R). So to deploy my model, I needed a way to score new data without xgb.predict. Now I wrote a scoring function in R using data frame made by xgb.model.dt.tree, which works fine but extremely slow. It takes 7 seconds to score single record. I am wondering how I can make my code run faster, any help will be appreciated.

I use 2 for and 1 while loops, which is obviously very slow in R. Apparently I should try to vectorize them, but I can't figure out how.

Rcpp seems to be an option, but I don't know C++.

Here is my code. Its multiclass classification with 18 class (0,500,1000 etc..). Model was built with nrounds=50 so there are total 18*50=900 boosters. Tree depth was set to 8, and dump data frame a is size 238252 X 10.

fun_score <- function (testsample) {
  df <- data.frame('0'=NA,'500'=NA,'1000'=NA,'1500'=NA,'2000'=NA,'3000'=NA,'5000'=NA,'6000'=NA,'8000'=NA,
                   '10000'=NA,'15000'=NA,'20000'=NA,'25000'=NA,'40000'=NA,'50000'=NA,'70000'=NA,'77000'=NA,'120000'=NA)
for (i in 0:17) { 
    twght <- 0
    for(tree_num in seq(i,899,18)){
      tr=a[Tree==tree_num]
      rid <- which(tr[,2]==0)
      splitvar <- as.character(tr[rid,4])
      while (grepl("Leaf",tr[rid,4])==F) {
        next_split <- as.character(ifelse(is.null(testsample[splitvar]), tr[rid,7],
                                          ifelse( as.numeric(testsample[splitvar]) < tr[rid,5], tr[rid,6],tr[rid,7])))
        rid <- which(tr[,3] == next_split)
        splitvar <- as.character(tr[rid,4])
      }
      w=(tr[rid,9])
      twght=twght+w
    }
    twght=twght+0.5 # bias 0.5
    df[,i+1]=twght
}
  df = as.data.frame(t(apply(df, 1, function(x)(exp(x))/(sum(exp(x))))))
  df$class=substr(colnames(df)[apply(df,1,which.max)],2, nchar(colnames(df)[apply(df,1,which.max)]))
  return(df)
}

And tree data.frame looks like this

> head(a)
   Tree Node  ID Feature     Split  Yes   No Missing    Quality     Cover
1:    0    0 0-0     DBR 14.900000  0-1  0-2     0-1 31579.3008 28727.481
2:    0    1 0-1     DBR  8.815001  0-3  0-4     0-3  4707.3477 15235.673
3:    0    2 0-2     DBR 20.584999  0-5  0-6     0-5  3631.3484 13491.809
4:    0    3 0-3    DSLR 18.500000  0-7  0-8     0-7  1703.1209  6624.963
5:    0    4 0-4     RAD -0.500000  0-9 0-10     0-9  1390.2230  8610.710
6:    0    5 0-5    DSLR 27.500000 0-11 0-12    0-11   861.4305  4966.624
1

There are 1 best solutions below

1
On

This looks like a great use case for Renjin's Just-in-time loop compiler. It's not enabled by default in the current release, however. You can enable it on the command line with the --compile-loops flag or using the JVM flag -Drenjin.compile.loops=true

If it doesn't provide a speedup, open an issue on GitHub.