h2o (version 3.30.0.1)

predict_leaf_node_assignment.H2OModel: Predict the Leaf Node Assignment on an H2O Model

Description

Obtains leaf node assignment from fitted H2O model objects.

Usage

predict_leaf_node_assignment.H2OModel(
  object,
  newdata,
  type = c("Path", "Node_ID"),
  ...
)

h2o.predict_leaf_node_assignment( object, newdata, type = c("Path", "Node_ID"), ... )

Arguments

object

a fitted '>H2OModel object for which prediction is desired

newdata

An H2OFrame object in which to look for variables with which to predict.

type

choice of either "Path" when tree paths are to be returned (default); or "Node_ID" when the output

...

additional arguments to pass on.

Value

Returns an H2OFrame object with categorical leaf assignment identifiers for each tree in the model.

Details

For every row in the test set, return the leaf placements of the row in all the trees in the model. Placements can be represented either by paths to the leaf nodes from the tree root or by H2O's internal identifiers. The order of the rows in the results is the same as the order in which the data was loaded

See Also

h2o.gbm and h2o.randomForest for model generation in h2o.

Examples

Run this code
# NOT RUN {
library(h2o)
h2o.init()
prostate_path <- system.file("extdata", "prostate.csv", package = "h2o")
prostate <- h2o.uploadFile(path = prostate_path)
prostate$CAPSULE <- as.factor(prostate$CAPSULE)
prostate_gbm <- h2o.gbm(3:9, "CAPSULE", prostate)
h2o.predict(prostate_gbm, prostate)
h2o.predict_leaf_node_assignment(prostate_gbm, prostate)
# }

Run the code above in your browser using DataCamp Workspace