predict.CCmodel: Predict Method for Classifier Chains

Description Usage Arguments Value Note See Also Examples

View source: R/method_cc.R

Description

This function predicts values based upon a model trained by cc.

Usage

1
2
3
4
5
6
7
8
9
## S3 method for class 'CCmodel'
predict(
  object,
  newdata,
  probability = getOption("utiml.use.probs", TRUE),
  ...,
  cores = NULL,
  seed = getOption("utiml.seed", NA)
)

Arguments

object

Object of class 'CCmodel'.

newdata

An object containing the new input data. This must be a matrix, data.frame or a mldr object.

probability

Logical indicating whether class probabilities should be returned. (Default: getOption("utiml.use.probs", TRUE))

...

Others arguments passed to the base algorithm prediction for all subproblems.

cores

Ignored because this method does not support multi-core.

seed

An optional integer used to set the seed. (Default: options("utiml.seed", NA))

Value

An object of type mlresult, based on the parameter probability.

Note

The Classifier Chains prediction can not be parallelized

See Also

Classifier Chains (CC)

Examples

1
2
3
4
5
6
7
8
9
model <- cc(toyml, "RANDOM")
pred <- predict(model, toyml)


# Predict SVM bipartitions
pred <- predict(model, toyml, prob = FALSE)

# Passing a specif parameter for SVM predict algorithm
pred <- predict(model, toyml, na.action = na.fail)

utiml documentation built on May 31, 2021, 9:09 a.m.