Learn R Programming

deepboost (version 0.1.5)

deepboost.print: Evaluates and prints statistics for a deepboost model on the train set

Description

Evaluates and prints statistics for a deepboost model on the train set

Usage

deepboost.print(object)

Arguments

object
A Deepboost S4 class object

Value

List with model_statistics to console the model evaluation string

Examples

Run this code
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.print(dpb)

Run the code above in your browser using DataLab