Description Usage Arguments Value Examples
Evaluates and prints statistics for a deepboost model
1 | deepboost.evaluate(object, data)
|
object |
A Deepboost S4 class object |
data |
a |
a list with model statistics - error, avg_tree_size, num_trees
1 2 3 4 | dpb <- deepboost(y ~ .,
data.frame(x1=rep(c(0,0,1,1),2),x2=rep(c(0,1,0,1),2),y=factor(rep(c(0,0,0,1),2))),
num_iter=2,tree_depth=2)
deepboost.evaluate(dpb,data.frame(x1=rep(c(1,1,1,0),2),x2=rep(c(1,1,1,1),2)))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.