predict.HOMERmodel {utiml} | R Documentation |
Predict Method for HOMER
Description
This function predicts values based upon a model trained by
homer
.
Usage
## S3 method for class 'HOMERmodel'
predict(
object,
newdata,
probability = getOption("utiml.use.probs", TRUE),
...,
cores = getOption("utiml.cores", 1),
seed = getOption("utiml.seed", NA)
)
Arguments
object |
Object of class ' |
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: |
... |
Others arguments passed to the base algorithm prediction for all subproblems. |
cores |
The number of cores to parallelize the prediction. Values higher
than 1 require the parallel package. (Default:
|
seed |
An optional integer used to set the seed. (Default:
|
Value
An object of type mlresult, based on the parameter probability.
See Also
Hierarchy Of Multilabel classifiER (HOMER)
Examples
model <- homer(toyml, "RANDOM")
pred <- predict(model, toyml)
[Package utiml version 0.1.7 Index]