Skip to content

a couple of issues from Florian

Concerning Example 8, there is one more problem:

At the very end, when doing predictions with the parallel version, the following gives an error:

bm_parallel <- predict(get.best.model(result_parallel), df[,-1],link = function(x)(1/(1+exp(-x)))) mean(round(bm_parallel)==df$y)

Error in x.precalc %*% objectcoefs[objectcoefs != 0] : non-conformable arguments Can you look into this?

Prediction based on the mpm model works.

mpm_parallel <- predict(get.mpm.model(result = result_parallel,family = "binomial",y = dfy,x=df[,-1]), df[,-1],link = function(x)(1/(1+exp(-x)))) mean(round(mpm_parallel)==dfy)

and check MPM documentation for the value