h2o (version 3.2.0.3)

predict.H2OModel: Predict on an H2O Model

Description

Obtains predictions from various fitted H2O model objects.

Usage

## S3 method for class 'H2OModel':
predict(object, newdata, ...)

h2o.predict(object, newdata, ...)

Arguments

object
a fitted H2OModel object for which prediction is desired
newdata
A H2OFrame object in which to look for variables with which to predict.
...
additional arguments to pass on.

Value

  • Returns an H2OFrame object with probabilites and default predictions.

Details

This method dispatches on the type of H2O model to select the correct prediction/scoring algorithm.

See Also

link{h2o.deeplearning}, link{h2o.gbm}, link{h2o.glm}, link{h2o.randomForest} for model generation in h2o.