# NOT RUN {
# Predict SVM scores
model <- dbr(toyml)
pred <- predict(model, toyml)
# Passing a specif parameter for SVM predict algorithm
pred <- predict(model, toyml, na.action = na.fail)
# Using other classifier (EBR) to made the labels estimatives
estimative <- predict(ebr(toyml), toyml)
model <- dbr(toyml, estimate.models = FALSE)
pred <- predict(model, toyml, estimative = estimative)
# }
Run the code above in your browser using DataLab